Try AWS Native preview for resources not in the classic version.
aws.connect.UserHierarchyGroup
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides an Amazon Connect User Hierarchy Group resource. For more information see Amazon Connect: Getting Started
NOTE: The User Hierarchy Structure must be created before creating a User Hierarchy Group.
Example Usage
Basic
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.connect.UserHierarchyGroup("example", {
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
name: "example",
tags: {
Name: "Example User Hierarchy Group",
},
});
import pulumi
import pulumi_aws as aws
example = aws.connect.UserHierarchyGroup("example",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
name="example",
tags={
"Name": "Example User Hierarchy Group",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/connect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := connect.NewUserHierarchyGroup(ctx, "example", &connect.UserHierarchyGroupArgs{
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
Name: pulumi.String("example"),
Tags: pulumi.StringMap{
"Name": pulumi.String("Example User Hierarchy Group"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Connect.UserHierarchyGroup("example", new()
{
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
Name = "example",
Tags =
{
{ "Name", "Example User Hierarchy Group" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.UserHierarchyGroup;
import com.pulumi.aws.connect.UserHierarchyGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new UserHierarchyGroup("example", UserHierarchyGroupArgs.builder()
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.name("example")
.tags(Map.of("Name", "Example User Hierarchy Group"))
.build());
}
}
resources:
example:
type: aws:connect:UserHierarchyGroup
properties:
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
name: example
tags:
Name: Example User Hierarchy Group
With a parent group
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const parent = new aws.connect.UserHierarchyGroup("parent", {
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
name: "parent",
tags: {
Name: "Example User Hierarchy Group Parent",
},
});
const child = new aws.connect.UserHierarchyGroup("child", {
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
name: "child",
parentGroupId: parent.hierarchyGroupId,
tags: {
Name: "Example User Hierarchy Group Child",
},
});
import pulumi
import pulumi_aws as aws
parent = aws.connect.UserHierarchyGroup("parent",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
name="parent",
tags={
"Name": "Example User Hierarchy Group Parent",
})
child = aws.connect.UserHierarchyGroup("child",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
name="child",
parent_group_id=parent.hierarchy_group_id,
tags={
"Name": "Example User Hierarchy Group Child",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/connect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
parent, err := connect.NewUserHierarchyGroup(ctx, "parent", &connect.UserHierarchyGroupArgs{
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
Name: pulumi.String("parent"),
Tags: pulumi.StringMap{
"Name": pulumi.String("Example User Hierarchy Group Parent"),
},
})
if err != nil {
return err
}
_, err = connect.NewUserHierarchyGroup(ctx, "child", &connect.UserHierarchyGroupArgs{
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
Name: pulumi.String("child"),
ParentGroupId: parent.HierarchyGroupId,
Tags: pulumi.StringMap{
"Name": pulumi.String("Example User Hierarchy Group Child"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var parent = new Aws.Connect.UserHierarchyGroup("parent", new()
{
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
Name = "parent",
Tags =
{
{ "Name", "Example User Hierarchy Group Parent" },
},
});
var child = new Aws.Connect.UserHierarchyGroup("child", new()
{
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
Name = "child",
ParentGroupId = parent.HierarchyGroupId,
Tags =
{
{ "Name", "Example User Hierarchy Group Child" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.UserHierarchyGroup;
import com.pulumi.aws.connect.UserHierarchyGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var parent = new UserHierarchyGroup("parent", UserHierarchyGroupArgs.builder()
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.name("parent")
.tags(Map.of("Name", "Example User Hierarchy Group Parent"))
.build());
var child = new UserHierarchyGroup("child", UserHierarchyGroupArgs.builder()
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.name("child")
.parentGroupId(parent.hierarchyGroupId())
.tags(Map.of("Name", "Example User Hierarchy Group Child"))
.build());
}
}
resources:
parent:
type: aws:connect:UserHierarchyGroup
properties:
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
name: parent
tags:
Name: Example User Hierarchy Group Parent
child:
type: aws:connect:UserHierarchyGroup
properties:
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
name: child
parentGroupId: ${parent.hierarchyGroupId}
tags:
Name: Example User Hierarchy Group Child
Create UserHierarchyGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UserHierarchyGroup(name: string, args: UserHierarchyGroupArgs, opts?: CustomResourceOptions);
@overload
def UserHierarchyGroup(resource_name: str,
args: UserHierarchyGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UserHierarchyGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
name: Optional[str] = None,
parent_group_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewUserHierarchyGroup(ctx *Context, name string, args UserHierarchyGroupArgs, opts ...ResourceOption) (*UserHierarchyGroup, error)
public UserHierarchyGroup(string name, UserHierarchyGroupArgs args, CustomResourceOptions? opts = null)
public UserHierarchyGroup(String name, UserHierarchyGroupArgs args)
public UserHierarchyGroup(String name, UserHierarchyGroupArgs args, CustomResourceOptions options)
type: aws:connect:UserHierarchyGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args UserHierarchyGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args UserHierarchyGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args UserHierarchyGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UserHierarchyGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UserHierarchyGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var userHierarchyGroupResource = new Aws.Connect.UserHierarchyGroup("userHierarchyGroupResource", new()
{
InstanceId = "string",
Name = "string",
ParentGroupId = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := connect.NewUserHierarchyGroup(ctx, "userHierarchyGroupResource", &connect.UserHierarchyGroupArgs{
InstanceId: pulumi.String("string"),
Name: pulumi.String("string"),
ParentGroupId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var userHierarchyGroupResource = new UserHierarchyGroup("userHierarchyGroupResource", UserHierarchyGroupArgs.builder()
.instanceId("string")
.name("string")
.parentGroupId("string")
.tags(Map.of("string", "string"))
.build());
user_hierarchy_group_resource = aws.connect.UserHierarchyGroup("userHierarchyGroupResource",
instance_id="string",
name="string",
parent_group_id="string",
tags={
"string": "string",
})
const userHierarchyGroupResource = new aws.connect.UserHierarchyGroup("userHierarchyGroupResource", {
instanceId: "string",
name: "string",
parentGroupId: "string",
tags: {
string: "string",
},
});
type: aws:connect:UserHierarchyGroup
properties:
instanceId: string
name: string
parentGroupId: string
tags:
string: string
UserHierarchyGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The UserHierarchyGroup resource accepts the following input properties:
- Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Name string
- The name of the user hierarchy group. Must not be more than 100 characters.
- Parent
Group stringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- Dictionary<string, string>
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Name string
- The name of the user hierarchy group. Must not be more than 100 characters.
- Parent
Group stringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- map[string]string
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- name String
- The name of the user hierarchy group. Must not be more than 100 characters.
- parent
Group StringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- Map<String,String>
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- name string
- The name of the user hierarchy group. Must not be more than 100 characters.
- parent
Group stringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- {[key: string]: string}
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- instance_
id str - Specifies the identifier of the hosting Amazon Connect Instance.
- name str
- The name of the user hierarchy group. Must not be more than 100 characters.
- parent_
group_ strid - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- Mapping[str, str]
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- name String
- The name of the user hierarchy group. Must not be more than 100 characters.
- parent
Group StringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- Map<String>
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the UserHierarchyGroup resource produces the following output properties:
- Arn string
- The Amazon Resource Name (ARN) of the hierarchy group.
- Hierarchy
Group stringId - The identifier for the hierarchy group.
- Hierarchy
Paths List<UserHierarchy Group Hierarchy Path> - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - Id string
- The provider-assigned unique ID for this managed resource.
- Level
Id string - The identifier of the level in the hierarchy group.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The Amazon Resource Name (ARN) of the hierarchy group.
- Hierarchy
Group stringId - The identifier for the hierarchy group.
- Hierarchy
Paths []UserHierarchy Group Hierarchy Path - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - Id string
- The provider-assigned unique ID for this managed resource.
- Level
Id string - The identifier of the level in the hierarchy group.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the hierarchy group.
- hierarchy
Group StringId - The identifier for the hierarchy group.
- hierarchy
Paths List<UserHierarchy Group Hierarchy Path> - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - id String
- The provider-assigned unique ID for this managed resource.
- level
Id String - The identifier of the level in the hierarchy group.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The Amazon Resource Name (ARN) of the hierarchy group.
- hierarchy
Group stringId - The identifier for the hierarchy group.
- hierarchy
Paths UserHierarchy Group Hierarchy Path[] - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - id string
- The provider-assigned unique ID for this managed resource.
- level
Id string - The identifier of the level in the hierarchy group.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The Amazon Resource Name (ARN) of the hierarchy group.
- hierarchy_
group_ strid - The identifier for the hierarchy group.
- hierarchy_
paths Sequence[UserHierarchy Group Hierarchy Path] - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - id str
- The provider-assigned unique ID for this managed resource.
- level_
id str - The identifier of the level in the hierarchy group.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the hierarchy group.
- hierarchy
Group StringId - The identifier for the hierarchy group.
- hierarchy
Paths List<Property Map> - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - id String
- The provider-assigned unique ID for this managed resource.
- level
Id String - The identifier of the level in the hierarchy group.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing UserHierarchyGroup Resource
Get an existing UserHierarchyGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: UserHierarchyGroupState, opts?: CustomResourceOptions): UserHierarchyGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
hierarchy_group_id: Optional[str] = None,
hierarchy_paths: Optional[Sequence[UserHierarchyGroupHierarchyPathArgs]] = None,
instance_id: Optional[str] = None,
level_id: Optional[str] = None,
name: Optional[str] = None,
parent_group_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> UserHierarchyGroup
func GetUserHierarchyGroup(ctx *Context, name string, id IDInput, state *UserHierarchyGroupState, opts ...ResourceOption) (*UserHierarchyGroup, error)
public static UserHierarchyGroup Get(string name, Input<string> id, UserHierarchyGroupState? state, CustomResourceOptions? opts = null)
public static UserHierarchyGroup get(String name, Output<String> id, UserHierarchyGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The Amazon Resource Name (ARN) of the hierarchy group.
- Hierarchy
Group stringId - The identifier for the hierarchy group.
- Hierarchy
Paths List<UserHierarchy Group Hierarchy Path> - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Level
Id string - The identifier of the level in the hierarchy group.
- Name string
- The name of the user hierarchy group. Must not be more than 100 characters.
- Parent
Group stringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- Dictionary<string, string>
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The Amazon Resource Name (ARN) of the hierarchy group.
- Hierarchy
Group stringId - The identifier for the hierarchy group.
- Hierarchy
Paths []UserHierarchy Group Hierarchy Path Args - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - Instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- Level
Id string - The identifier of the level in the hierarchy group.
- Name string
- The name of the user hierarchy group. Must not be more than 100 characters.
- Parent
Group stringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- map[string]string
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the hierarchy group.
- hierarchy
Group StringId - The identifier for the hierarchy group.
- hierarchy
Paths List<UserHierarchy Group Hierarchy Path> - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- level
Id String - The identifier of the level in the hierarchy group.
- name String
- The name of the user hierarchy group. Must not be more than 100 characters.
- parent
Group StringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- Map<String,String>
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The Amazon Resource Name (ARN) of the hierarchy group.
- hierarchy
Group stringId - The identifier for the hierarchy group.
- hierarchy
Paths UserHierarchy Group Hierarchy Path[] - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - instance
Id string - Specifies the identifier of the hosting Amazon Connect Instance.
- level
Id string - The identifier of the level in the hierarchy group.
- name string
- The name of the user hierarchy group. Must not be more than 100 characters.
- parent
Group stringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- {[key: string]: string}
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The Amazon Resource Name (ARN) of the hierarchy group.
- hierarchy_
group_ strid - The identifier for the hierarchy group.
- hierarchy_
paths Sequence[UserHierarchy Group Hierarchy Path Args] - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - instance_
id str - Specifies the identifier of the hosting Amazon Connect Instance.
- level_
id str - The identifier of the level in the hierarchy group.
- name str
- The name of the user hierarchy group. Must not be more than 100 characters.
- parent_
group_ strid - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- Mapping[str, str]
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the hierarchy group.
- hierarchy
Group StringId - The identifier for the hierarchy group.
- hierarchy
Paths List<Property Map> - A block that contains information about the levels in the hierarchy group. The
hierarchy_path
block is documented below. - instance
Id String - Specifies the identifier of the hosting Amazon Connect Instance.
- level
Id String - The identifier of the level in the hierarchy group.
- name String
- The name of the user hierarchy group. Must not be more than 100 characters.
- parent
Group StringId - The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.
- Map<String>
- Tags to apply to the hierarchy group. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
UserHierarchyGroupHierarchyPath, UserHierarchyGroupHierarchyPathArgs
- Level
Fives List<UserHierarchy Group Hierarchy Path Level Fife> - A block that defines the details of level five. The level block is documented below.
- Level
Fours List<UserHierarchy Group Hierarchy Path Level Four> - A block that defines the details of level four. The level block is documented below.
- Level
Ones List<UserHierarchy Group Hierarchy Path Level One> - A block that defines the details of level one. The level block is documented below.
- Level
Threes List<UserHierarchy Group Hierarchy Path Level Three> - A block that defines the details of level three. The level block is documented below.
- Level
Twos List<UserHierarchy Group Hierarchy Path Level Two> - A block that defines the details of level two. The level block is documented below.
- Level
Fives []UserHierarchy Group Hierarchy Path Level Fife - A block that defines the details of level five. The level block is documented below.
- Level
Fours []UserHierarchy Group Hierarchy Path Level Four - A block that defines the details of level four. The level block is documented below.
- Level
Ones []UserHierarchy Group Hierarchy Path Level One - A block that defines the details of level one. The level block is documented below.
- Level
Threes []UserHierarchy Group Hierarchy Path Level Three - A block that defines the details of level three. The level block is documented below.
- Level
Twos []UserHierarchy Group Hierarchy Path Level Two - A block that defines the details of level two. The level block is documented below.
- level
Fives List<UserHierarchy Group Hierarchy Path Level Fife> - A block that defines the details of level five. The level block is documented below.
- level
Fours List<UserHierarchy Group Hierarchy Path Level Four> - A block that defines the details of level four. The level block is documented below.
- level
Ones List<UserHierarchy Group Hierarchy Path Level One> - A block that defines the details of level one. The level block is documented below.
- level
Threes List<UserHierarchy Group Hierarchy Path Level Three> - A block that defines the details of level three. The level block is documented below.
- level
Twos List<UserHierarchy Group Hierarchy Path Level Two> - A block that defines the details of level two. The level block is documented below.
- level
Fives UserHierarchy Group Hierarchy Path Level Fife[] - A block that defines the details of level five. The level block is documented below.
- level
Fours UserHierarchy Group Hierarchy Path Level Four[] - A block that defines the details of level four. The level block is documented below.
- level
Ones UserHierarchy Group Hierarchy Path Level One[] - A block that defines the details of level one. The level block is documented below.
- level
Threes UserHierarchy Group Hierarchy Path Level Three[] - A block that defines the details of level three. The level block is documented below.
- level
Twos UserHierarchy Group Hierarchy Path Level Two[] - A block that defines the details of level two. The level block is documented below.
- level_
fives Sequence[UserHierarchy Group Hierarchy Path Level Fife] - A block that defines the details of level five. The level block is documented below.
- level_
fours Sequence[UserHierarchy Group Hierarchy Path Level Four] - A block that defines the details of level four. The level block is documented below.
- level_
ones Sequence[UserHierarchy Group Hierarchy Path Level One] - A block that defines the details of level one. The level block is documented below.
- level_
threes Sequence[UserHierarchy Group Hierarchy Path Level Three] - A block that defines the details of level three. The level block is documented below.
- level_
twos Sequence[UserHierarchy Group Hierarchy Path Level Two] - A block that defines the details of level two. The level block is documented below.
- level
Fives List<Property Map> - A block that defines the details of level five. The level block is documented below.
- level
Fours List<Property Map> - A block that defines the details of level four. The level block is documented below.
- level
Ones List<Property Map> - A block that defines the details of level one. The level block is documented below.
- level
Threes List<Property Map> - A block that defines the details of level three. The level block is documented below.
- level
Twos List<Property Map> - A block that defines the details of level two. The level block is documented below.
UserHierarchyGroupHierarchyPathLevelFife, UserHierarchyGroupHierarchyPathLevelFifeArgs
UserHierarchyGroupHierarchyPathLevelFour, UserHierarchyGroupHierarchyPathLevelFourArgs
UserHierarchyGroupHierarchyPathLevelOne, UserHierarchyGroupHierarchyPathLevelOneArgs
UserHierarchyGroupHierarchyPathLevelThree, UserHierarchyGroupHierarchyPathLevelThreeArgs
UserHierarchyGroupHierarchyPathLevelTwo, UserHierarchyGroupHierarchyPathLevelTwoArgs
Import
Using pulumi import
, import Amazon Connect User Hierarchy Groups using the instance_id
and hierarchy_group_id
separated by a colon (:
). For example:
$ pulumi import aws:connect/userHierarchyGroup:UserHierarchyGroup example f1288a1f-6193-445a-b47e-af739b2:c1d4e5f6-1b3c-1b3c-1b3c-c1d4e5f6c1d4e5
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.