CfnGroupProfileProps
- class aws_cdk.aws_datazone.CfnGroupProfileProps(*, domain_identifier, group_identifier=None, group_type=None, role_principal_arn=None, status=None)
Bases:
objectProperties for defining a
CfnGroupProfile.- Parameters:
domain_identifier (
str) – The identifier of the Amazon DataZone domain in which a group profile exists.group_identifier (
Optional[str]) – The ID of the group of a project member.group_type (
Optional[str]) – The type of the group.role_principal_arn (
Optional[str]) – The ARN of the role principal for the group profile.status (
Optional[str]) – The status of a group profile.
- See:
- 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 import aws_datazone as datazone cfn_group_profile_props = datazone.CfnGroupProfileProps( domain_identifier="domainIdentifier", # the properties below are optional group_identifier="groupIdentifier", group_type="groupType", role_principal_arn="rolePrincipalArn", status="status" )
Attributes
- domain_identifier
The identifier of the Amazon DataZone domain in which a group profile exists.
- group_identifier
The ID of the group of a project member.
- group_type
The type of the group.
- role_principal_arn
The ARN of the role principal for the group profile.
- status
The status of a group profile.