interface LevelTwoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnUserHierarchyStructurePropsMixin.LevelTwoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnUserHierarchyStructurePropsMixin_LevelTwoProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnUserHierarchyStructurePropsMixin.LevelTwoProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnUserHierarchyStructurePropsMixin.LevelTwoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnUserHierarchyStructurePropsMixin » LevelTwoProperty |
The update for level two.
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 levelTwoProperty: connect_mixins.CfnUserHierarchyStructurePropsMixin.LevelTwoProperty = {
hierarchyLevelArn: 'hierarchyLevelArn',
hierarchyLevelId: 'hierarchyLevelId',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| hierarchy | string | The Amazon Resource Name (ARN) of the hierarchy level. |
| hierarchy | string | The identifier of the hierarchy level. |
| name? | string | The name of the hierarchy level. |
hierarchyLevelArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the hierarchy level.
hierarchyLevelId?
Type:
string
(optional)
The identifier of the hierarchy level.
name?
Type:
string
(optional)
The name of the hierarchy level.

.NET
Go
Java
Python
TypeScript