Interface CfnUserHierarchyStructureMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserHierarchyStructureMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.661Z")
@Stability(Stable)
public interface CfnUserHierarchyStructureMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnUserHierarchyStructurePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
CfnUserHierarchyStructureMixinProps cfnUserHierarchyStructureMixinProps = CfnUserHierarchyStructureMixinProps.builder()
.instanceArn("instanceArn")
.userHierarchyStructure(UserHierarchyStructureProperty.builder()
.levelFive(LevelFiveProperty.builder()
.hierarchyLevelArn("hierarchyLevelArn")
.hierarchyLevelId("hierarchyLevelId")
.name("name")
.build())
.levelFour(LevelFourProperty.builder()
.hierarchyLevelArn("hierarchyLevelArn")
.hierarchyLevelId("hierarchyLevelId")
.name("name")
.build())
.levelOne(LevelOneProperty.builder()
.hierarchyLevelArn("hierarchyLevelArn")
.hierarchyLevelId("hierarchyLevelId")
.name("name")
.build())
.levelThree(LevelThreeProperty.builder()
.hierarchyLevelArn("hierarchyLevelArn")
.hierarchyLevelId("hierarchyLevelId")
.name("name")
.build())
.levelTwo(LevelTwoProperty.builder()
.hierarchyLevelArn("hierarchyLevelArn")
.hierarchyLevelId("hierarchyLevelId")
.name("name")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserHierarchyStructureMixinPropsstatic final classAn implementation forCfnUserHierarchyStructureMixinProps -
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
IResolvableorCfnUserHierarchyStructurePropsMixin.UserHierarchyStructureProperty- See Also:
-
builder
-