CfnUserHierarchyGroupMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnUserHierarchyGroupMixinProps(*, instance_arn=None, name=None, parent_group_arn=None, tags=None)

Bases: object

Properties for CfnUserHierarchyGroupPropsMixin.

Parameters:
  • instance_arn (Optional[str]) – The Amazon Resource Name (ARN) of the user hierarchy group.

  • name (Optional[str]) – The name of the user hierarchy group.

  • parent_group_arn (Optional[str]) – The Amazon Resource Name (ARN) of the parent group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchygroup.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_group_mixin_props = connect_mixins.CfnUserHierarchyGroupMixinProps(
    instance_arn="instanceArn",
    name="name",
    parent_group_arn="parentGroupArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

instance_arn

The Amazon Resource Name (ARN) of the user hierarchy group.

See:

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

name

The name of the user hierarchy group.

See:

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

parent_group_arn

The Amazon Resource Name (ARN) of the parent group.

See:

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

tags

An array of key-value pairs to apply to this resource.

See:

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