Interface CfnUserHierarchyGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserHierarchyGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-06T22:15:52.085Z")
@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 class
A builder forCfnUserHierarchyGroupProps
static final class
An 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.- 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.Builder
ofCfnUserHierarchyGroupProps
-