CfnGroupMixinProps
- class aws_cdk.mixins_preview.aws_identitystore.mixins.CfnGroupMixinProps(*, description=None, display_name=None, identity_store_id=None)
Bases:
objectProperties for CfnGroupPropsMixin.
- Parameters:
description (
Optional[str]) – A string containing the description of the group.display_name (
Optional[str]) – The display name value for the group. The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store. Prefix search supports a maximum of 1,000 characters for the string.identity_store_id (
Optional[str]) – The globally unique identifier for the identity store.
- See:
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. from aws_cdk.mixins_preview.aws_identitystore import mixins as identitystore_mixins cfn_group_mixin_props = identitystore_mixins.CfnGroupMixinProps( description="description", display_name="displayName", identity_store_id="identityStoreId" )
Attributes
- description
A string containing the description of the group.
- display_name
The display name value for the group.
The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store.
Prefix search supports a maximum of 1,000 characters for the string.
- identity_store_id
The globally unique identifier for the identity store.