interface CfnUserHierarchyGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnUserHierarchyGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnUserHierarchyGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnUserHierarchyGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnUserHierarchyGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnUserHierarchyGroupMixinProps |
Properties for CfnUserHierarchyGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const cfnUserHierarchyGroupMixinProps: connect.CfnUserHierarchyGroupMixinProps = {
instanceArn: 'instanceArn',
name: 'name',
parentGroupArn: 'parentGroupArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | IInstance | The Amazon Resource Name (ARN) of the user hierarchy group. |
| name? | string | The name of the user hierarchy group. |
| parent | string | The Amazon Resource Name (ARN) of the parent group. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
instanceArn?
Type:
string | IInstance
(optional)
The Amazon Resource Name (ARN) of the user hierarchy group.
name?
Type:
string
(optional)
The name of the user hierarchy group.
parentGroupArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the parent group.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript