CfnUserHierarchyStructureMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnUserHierarchyStructureMixinProps(*, instance_arn=None, user_hierarchy_structure=None)

Bases: object

Properties for CfnUserHierarchyStructurePropsMixin.

Parameters:
  • instance_arn (Optional[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.mixins_preview.aws_connect import mixins as connect_mixins

cfn_user_hierarchy_structure_mixin_props = connect_mixins.CfnUserHierarchyStructureMixinProps(
    instance_arn="instanceArn",
    user_hierarchy_structure=connect_mixins.CfnUserHierarchyStructurePropsMixin.UserHierarchyStructureProperty(
        level_five=connect_mixins.CfnUserHierarchyStructurePropsMixin.LevelFiveProperty(
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId",
            name="name"
        ),
        level_four=connect_mixins.CfnUserHierarchyStructurePropsMixin.LevelFourProperty(
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId",
            name="name"
        ),
        level_one=connect_mixins.CfnUserHierarchyStructurePropsMixin.LevelOneProperty(
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId",
            name="name"
        ),
        level_three=connect_mixins.CfnUserHierarchyStructurePropsMixin.LevelThreeProperty(
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId",
            name="name"
        ),
        level_two=connect_mixins.CfnUserHierarchyStructurePropsMixin.LevelTwoProperty(
            hierarchy_level_arn="hierarchyLevelArn",
            hierarchy_level_id="hierarchyLevelId",
            name="name"
        )
    )
)

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