CfnGroupProfileProps

class aws_cdk.aws_datazone.CfnGroupProfileProps(*, domain_identifier, group_identifier, status=None)

Bases: object

Properties for defining a CfnGroupProfile.

Parameters:
  • domain_identifier (str) – The identifier of the Amazon DataZone domain in which a group profile exists.

  • group_identifier (str) – The ID of the group of a project member.

  • status (Optional[str]) – The status of a group profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.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 import aws_datazone as datazone

cfn_group_profile_props = datazone.CfnGroupProfileProps(
    domain_identifier="domainIdentifier",
    group_identifier="groupIdentifier",

    # the properties below are optional
    status="status"
)

Attributes

domain_identifier

The identifier of the Amazon DataZone domain in which a group profile exists.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-domainidentifier

group_identifier

The ID of the group of a project member.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-groupidentifier

status

The status of a group profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-status