Interface CfnUserHierarchyStructureProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserHierarchyStructureProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-12T12:32:00.480Z")
@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 class
A builder forCfnUserHierarchyStructureProps
static final class
An 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.- See Also:
-
builder
-