CfnUserHierarchyGroupProps

class aws_cdk.aws_connect.CfnUserHierarchyGroupProps(*, instance_arn, name, parent_group_arn=None, tags=None)

Bases: object

Properties for defining a CfnUserHierarchyGroup.

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

  • name (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 import aws_connect as connect

cfn_user_hierarchy_group_props = connect.CfnUserHierarchyGroupProps(
    instance_arn="instanceArn",
    name="name",

    # the properties below are optional
    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