Interface CfnUserHierarchyStructure.UserHierarchyStructureProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserHierarchyStructure.UserHierarchyStructureProperty.Jsii$Proxy
Enclosing class:
CfnUserHierarchyStructure

@Stability(Stable) public static interface CfnUserHierarchyStructure.UserHierarchyStructureProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connect.*;
 UserHierarchyStructureProperty userHierarchyStructureProperty = UserHierarchyStructureProperty.builder()
         .levelFive(LevelFiveProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .hierarchyLevelArn("hierarchyLevelArn")
                 .hierarchyLevelId("hierarchyLevelId")
                 .build())
         .levelFour(LevelFourProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .hierarchyLevelArn("hierarchyLevelArn")
                 .hierarchyLevelId("hierarchyLevelId")
                 .build())
         .levelOne(LevelOneProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .hierarchyLevelArn("hierarchyLevelArn")
                 .hierarchyLevelId("hierarchyLevelId")
                 .build())
         .levelThree(LevelThreeProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .hierarchyLevelArn("hierarchyLevelArn")
                 .hierarchyLevelId("hierarchyLevelId")
                 .build())
         .levelTwo(LevelTwoProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .hierarchyLevelArn("hierarchyLevelArn")
                 .hierarchyLevelId("hierarchyLevelId")
                 .build())
         .build();
 

See Also: