CfnProjectMembershipPropsMixin

class aws_cdk.mixins_preview.aws_datazone.mixins.CfnProjectMembershipPropsMixin(props, *, strategy=None)

Bases: Mixin

The AWS::DataZone::ProjectMembership resource adds a member to an Amazon DataZone project.

Project members consume assets from the Amazon DataZone catalog and produce new assets using one or more analytical workflows.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html

CloudformationResource:

AWS::DataZone::ProjectMembership

Mixin:

true

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 import mixins
from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins

cfn_project_membership_props_mixin = datazone_mixins.CfnProjectMembershipPropsMixin(datazone_mixins.CfnProjectMembershipMixinProps(
    designation="designation",
    domain_identifier="domainIdentifier",
    member=datazone_mixins.CfnProjectMembershipPropsMixin.MemberProperty(
        group_identifier="groupIdentifier",
        user_identifier="userIdentifier"
    ),
    project_identifier="projectIdentifier"
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::DataZone::ProjectMembership.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['designation', 'domainIdentifier', 'member', 'projectIdentifier']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

MemberProperty

class CfnProjectMembershipPropsMixin.MemberProperty(*, group_identifier=None, user_identifier=None)

Bases: object

The details about a project member.

Important - this data type is a UNION, so only one of the following members can be specified when used or returned.

Parameters:
  • group_identifier (Optional[str]) – The ID of the group of a project member.

  • user_identifier (Optional[str]) – The user ID of a project member.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.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_datazone import mixins as datazone_mixins

member_property = datazone_mixins.CfnProjectMembershipPropsMixin.MemberProperty(
    group_identifier="groupIdentifier",
    user_identifier="userIdentifier"
)

Attributes

group_identifier

The ID of the group of a project member.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html#cfn-datazone-projectmembership-member-groupidentifier

user_identifier

The user ID of a project member.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html#cfn-datazone-projectmembership-member-useridentifier