interface EnvironmentProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DataZone.EnvironmentProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdatazone#EnvironmentProfileReference |
Java | software.amazon.awscdk.interfaces.datazone.EnvironmentProfileReference |
Python | aws_cdk.interfaces.aws_datazone.EnvironmentProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_datazone » EnvironmentProfileReference |
A reference to a EnvironmentProfile 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 interfaces_aws_datazone } from 'aws-cdk-lib/interfaces';
const environmentProfileReference: interfaces_aws_datazone.EnvironmentProfileReference = {
domainId: 'domainId',
environmentProfileId: 'environmentProfileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainId of the EnvironmentProfile resource. |
| environment | string | The Id of the EnvironmentProfile resource. |
domainId
Type:
string
The DomainId of the EnvironmentProfile resource.
environmentProfileId
Type:
string
The Id of the EnvironmentProfile resource.

.NET
Go
Java
Python
TypeScript