interface CfnProjectMembershipMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnProjectMembershipMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnProjectMembershipMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnProjectMembershipMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnProjectMembershipMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnProjectMembershipMixinProps |
Properties for CfnProjectMembershipPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const cfnProjectMembershipMixinProps: datazone_mixins.CfnProjectMembershipMixinProps = {
designation: 'designation',
domainIdentifier: 'domainIdentifier',
member: {
groupIdentifier: 'groupIdentifier',
userIdentifier: 'userIdentifier',
},
projectIdentifier: 'projectIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| designation? | string | The designated role of a project member. |
| domain | string | The ID of the Amazon DataZone domain in which project membership is created. |
| member? | IResolvable | Member | The details about a project member. |
| project | string | The ID of the project for which this project membership was created. |
designation?
Type:
string
(optional)
The designated role of a project member.
domainIdentifier?
Type:
string
(optional)
The ID of the Amazon DataZone domain in which project membership is created.
member?
Type:
IResolvable | Member
(optional)
The details about a project member.
projectIdentifier?
Type:
string
(optional)
The ID of the project for which this project membership was created.

.NET
Go
Java
Python
TypeScript