Interface CfnUserHierarchyStructureProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserHierarchyStructureProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:48.444Z")
@Stability(Stable)
public interface CfnUserHierarchyStructureProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnUserHierarchyStructure.
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.*;
CfnUserHierarchyStructureProps cfnUserHierarchyStructureProps = CfnUserHierarchyStructureProps.builder()
.instanceArn("instanceArn")
// the properties below are optional
.userHierarchyStructure(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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserHierarchyStructurePropsstatic final classAn implementation forCfnUserHierarchyStructureProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- See Also:
-
getUserHierarchyStructure
Contains information about a hierarchy structure.Returns union: either
IResolvableorCfnUserHierarchyStructure.UserHierarchyStructureProperty- See Also:
-
builder
-