interface CfnGroupProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnGroupProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnGroupProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnGroupProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnGroupProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnGroupProfileMixinProps |
Properties for CfnGroupProfilePropsMixin.
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 cfnGroupProfileMixinProps: datazone_mixins.CfnGroupProfileMixinProps = {
domainIdentifier: 'domainIdentifier',
groupIdentifier: 'groupIdentifier',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The identifier of the Amazon DataZone domain in which a group profile exists. |
| group | string | The ID of the group of a project member. |
| status? | string | The status of a group profile. |
domainIdentifier?
Type:
string
(optional)
The identifier of the Amazon DataZone domain in which a group profile exists.
groupIdentifier?
Type:
string
(optional)
The ID of the group of a project member.
status?
Type:
string
(optional)
The status of a group profile.

.NET
Go
Java
Python
TypeScript