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

.NET
Go
Java
Python
TypeScript