Interface CfnGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)",
date="2024-01-03T18:29:27.497Z")
@Stability(Stable)
public interface CfnGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGroup.
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.identitystore.*;
CfnGroupProps cfnGroupProps = CfnGroupProps.builder()
.displayName("displayName")
.identityStoreId("identityStoreId")
// the properties below are optional
.description("description")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGroupPropsstatic final classAn implementation forCfnGroupProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGroupProps.Builderbuilder()default StringA string containing the description of the group.A string containing the name of the group.The globally unique identifier for the identity store.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDisplayName
A string containing the name of the group.This value is commonly displayed when the group is referenced.
- See Also:
-
getIdentityStoreId
The globally unique identifier for the identity store.- See Also:
-
getDescription
A string containing the description of the group.- See Also:
-
builder
- Returns:
- a
CfnGroupProps.BuilderofCfnGroupProps
-