CfnGroupProps
- class aws_cdk.aws_identitystore.CfnGroupProps(*, display_name, identity_store_id, description=None)
Bases:
object
Properties for defining a
CfnGroup
.- Parameters:
display_name (
str
) –AWS::IdentityStore::Group.DisplayName
.identity_store_id (
str
) –AWS::IdentityStore::Group.IdentityStoreId
.description (
Optional
[str
]) – A string containing the description of the group.
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-group.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_identitystore as identitystore cfn_group_props = identitystore.CfnGroupProps( display_name="displayName", identity_store_id="identityStoreId", # the properties below are optional description="description" )
Attributes
- description
A string containing the description of the group.
- display_name
AWS::IdentityStore::Group.DisplayName
.
- identity_store_id
AWS::IdentityStore::Group.IdentityStoreId
.