Interface CfnUserHierarchyGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserHierarchyGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:07.791Z")
@Stability(Stable)
public interface CfnUserHierarchyGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnUserHierarchyGroup.
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.*;
CfnUserHierarchyGroupProps cfnUserHierarchyGroupProps = CfnUserHierarchyGroupProps.builder()
.instanceArn("instanceArn")
.name("name")
// the properties below are optional
.parentGroupArn("parentGroupArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserHierarchyGroupPropsstatic final classAn implementation forCfnUserHierarchyGroupProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceArn
The Amazon Resource Name (ARN) of the user hierarchy group.Returns union: either
StringorIInstanceRef- See Also:
-
getName
The name of the user hierarchy group.- See Also:
-
getParentGroupArn
The Amazon Resource Name (ARN) of the parent group.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnUserHierarchyGroupProps.BuilderofCfnUserHierarchyGroupProps
-