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.Returns union: either
IResolvableorCfnUserHierarchyStructure.LevelFiveProperty- See Also:
-
getLevelFour
The update for level four.Returns union: either
IResolvableorCfnUserHierarchyStructure.LevelFourProperty- See Also:
-
getLevelOne
The update for level one.Returns union: either
IResolvableorCfnUserHierarchyStructure.LevelOneProperty- See Also:
-
getLevelThree
The update for level three.Returns union: either
IResolvableorCfnUserHierarchyStructure.LevelThreeProperty- See Also:
-
getLevelTwo
The update for level two.Returns union: either
IResolvableorCfnUserHierarchyStructure.LevelTwoProperty- See Also:
-
builder
@Stability(Stable) static CfnUserHierarchyStructure.UserHierarchyStructureProperty.Builder builder()
-