interface CfnEnvironmentActionsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnEnvironmentActionsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnEnvironmentActionsMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnEnvironmentActionsMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentActionsMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnEnvironmentActionsMixinProps |
Properties for CfnEnvironmentActionsPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const cfnEnvironmentActionsMixinProps: datazone_mixins.CfnEnvironmentActionsMixinProps = {
description: 'description',
domainIdentifier: 'domainIdentifier',
environmentIdentifier: 'environmentIdentifier',
identifier: 'identifier',
name: 'name',
parameters: {
uri: 'uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The environment action description. |
| domain | string | The Amazon DataZone domain ID of the environment action. |
| environment | string | The environment ID of the environment action. |
| identifier? | string | The ID of the environment action. |
| name? | string | The name of the environment action. |
| parameters? | IResolvable | Aws | The parameters of the environment action. |
description?
Type:
string
(optional)
The environment action description.
domainIdentifier?
Type:
string
(optional)
The Amazon DataZone domain ID of the environment action.
environmentIdentifier?
Type:
string
(optional)
The environment ID of the environment action.
identifier?
Type:
string
(optional)
The ID of the environment action.
name?
Type:
string
(optional)
The name of the environment action.
parameters?
Type:
IResolvable | Aws
(optional)
The parameters of the environment action.

.NET
Go
Java
Python
TypeScript