interface UserHierarchyStructureProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnUserHierarchyStructurePropsMixin.UserHierarchyStructureProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnUserHierarchyStructurePropsMixin_UserHierarchyStructureProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnUserHierarchyStructurePropsMixin.UserHierarchyStructureProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnUserHierarchyStructurePropsMixin.UserHierarchyStructureProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnUserHierarchyStructurePropsMixin » UserHierarchyStructureProperty |
Contains information about a hierarchy structure.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const userHierarchyStructureProperty: connect_mixins.CfnUserHierarchyStructurePropsMixin.UserHierarchyStructureProperty = {
levelFive: {
hierarchyLevelArn: 'hierarchyLevelArn',
hierarchyLevelId: 'hierarchyLevelId',
name: 'name',
},
levelFour: {
hierarchyLevelArn: 'hierarchyLevelArn',
hierarchyLevelId: 'hierarchyLevelId',
name: 'name',
},
levelOne: {
hierarchyLevelArn: 'hierarchyLevelArn',
hierarchyLevelId: 'hierarchyLevelId',
name: 'name',
},
levelThree: {
hierarchyLevelArn: 'hierarchyLevelArn',
hierarchyLevelId: 'hierarchyLevelId',
name: 'name',
},
levelTwo: {
hierarchyLevelArn: 'hierarchyLevelArn',
hierarchyLevelId: 'hierarchyLevelId',
name: 'name',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| level | IResolvable | Level | Information about level five. |
| level | IResolvable | Level | The update for level four. |
| level | IResolvable | Level | The update for level one. |
| level | IResolvable | Level | The update for level three. |
| level | IResolvable | Level | The update for level two. |
levelFive?
Type:
IResolvable | Level
(optional)
Information about level five.
levelFour?
Type:
IResolvable | Level
(optional)
The update for level four.
levelOne?
Type:
IResolvable | Level
(optional)
The update for level one.
levelThree?
Type:
IResolvable | Level
(optional)
The update for level three.
levelTwo?
Type:
IResolvable | Level
(optional)
The update for level two.

.NET
Go
Java
Python
TypeScript