interface CfnUserHierarchyGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnUserHierarchyGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnUserHierarchyGroupProps |
Java | software.amazon.awscdk.services.connect.CfnUserHierarchyGroupProps |
Python | aws_cdk.aws_connect.CfnUserHierarchyGroupProps |
TypeScript | aws-cdk-lib » aws_connect » CfnUserHierarchyGroupProps |
Properties for defining a CfnUserHierarchyGroup.
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-lib';
const cfnUserHierarchyGroupProps: connect.CfnUserHierarchyGroupProps = {
instanceArn: 'instanceArn',
name: 'name',
// the properties below are optional
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
The Amazon Resource Name (ARN) of the user hierarchy group.
name
Type:
string
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