CfnUserHierarchyStructureProps

class aws_cdk.aws_connect.CfnUserHierarchyStructureProps(*, instance_arn, user_hierarchy_structure=None)

Bases: object

Properties for defining a CfnUserHierarchyStructure.

Parameters:
  • instance_arn (str) – The Amazon Resource Name (ARN) of the instance.

  • user_hierarchy_structure (Union[IResolvable, UserHierarchyStructureProperty, Dict[str, Any], None]) – Contains information about a hierarchy structure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_connect as connect

cfn_user_hierarchy_structure_props = connect.CfnUserHierarchyStructureProps(
    instance_arn="instanceArn",

    # the properties below are optional
    user_hierarchy_structure=connect.CfnUserHierarchyStructure.UserHierarchyStructureProperty(
        level_five=connect.CfnUserHierarchyStructure.LevelFiveProperty(
            name="name",

            # the properties below are optional
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId"
        ),
        level_four=connect.CfnUserHierarchyStructure.LevelFourProperty(
            name="name",

            # the properties below are optional
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId"
        ),
        level_one=connect.CfnUserHierarchyStructure.LevelOneProperty(
            name="name",

            # the properties below are optional
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId"
        ),
        level_three=connect.CfnUserHierarchyStructure.LevelThreeProperty(
            name="name",

            # the properties below are optional
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId"
        ),
        level_two=connect.CfnUserHierarchyStructure.LevelTwoProperty(
            name="name",

            # the properties below are optional
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId"
        )
    )
)

Attributes

instance_arn

The Amazon Resource Name (ARN) of the instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html#cfn-connect-userhierarchystructure-instancearn

user_hierarchy_structure

Contains information about a hierarchy structure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html#cfn-connect-userhierarchystructure-userhierarchystructure