interface CfnGroupProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnGroupProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnGroupProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnGroupProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnGroupProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » 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 { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const cfnGroupProfileMixinProps: datazone.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