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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserHierarchyStructure.UserHierarchyStructurePropertystatic final classAn implementation forCfnUserHierarchyStructure.UserHierarchyStructureProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLevelFive
Information about level five.- See Also:
-
getLevelFour
The update for level four.- See Also:
-
getLevelOne
The update for level one.- See Also:
-
getLevelThree
The update for level three.- See Also:
-
getLevelTwo
The update for level two.- See Also:
-
builder
@Stability(Stable) static CfnUserHierarchyStructure.UserHierarchyStructureProperty.Builder builder()
-