interface GroupProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.GroupProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#GroupProfileReference |
Java | software.amazon.awscdk.services.datazone.GroupProfileReference |
Python | aws_cdk.aws_datazone.GroupProfileReference |
TypeScript | aws-cdk-lib » aws_datazone » GroupProfileReference |
A reference to a GroupProfile resource.
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-lib';
const groupProfileReference: datazone.GroupProfileReference = {
domainId: 'domainId',
groupProfileId: 'groupProfileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainId of the GroupProfile resource. |
| group | string | The Id of the GroupProfile resource. |
domainId
Type:
string
The DomainId of the GroupProfile resource.
groupProfileId
Type:
string
The Id of the GroupProfile resource.

.NET
Go
Java
Python
TypeScript