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

.NET
Go
Java
Python
TypeScript