CfnProjectMembershipProps
- class aws_cdk.aws_datazone.CfnProjectMembershipProps(*, designation, domain_identifier, member, project_identifier)
Bases:
object
Properties for defining a
CfnProjectMembership
.- Parameters:
designation (
str
) – The designated role of a project member.domain_identifier (
str
) – The ID of the Amazon DataZone domain in which project membership is created.member (
Union
[IResolvable
,MemberProperty
,Dict
[str
,Any
]]) – The details about a project member.project_identifier (
str
) – The ID of the project for which this project membership was created.
- 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_project_membership_props = datazone.CfnProjectMembershipProps( designation="designation", domain_identifier="domainIdentifier", member=datazone.CfnProjectMembership.MemberProperty( group_identifier="groupIdentifier", user_identifier="userIdentifier" ), project_identifier="projectIdentifier" )
Attributes
- designation
The designated role of a project member.
- domain_identifier
The ID of the Amazon DataZone domain in which project membership is created.
- member
The details about a project member.
- project_identifier
The ID of the project for which this project membership was created.