interface CfnEnvironmentActionsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.CfnEnvironmentActionsProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnEnvironmentActionsProps |
Java | software.amazon.awscdk.services.datazone.CfnEnvironmentActionsProps |
Python | aws_cdk.aws_datazone.CfnEnvironmentActionsProps |
TypeScript | aws-cdk-lib » aws_datazone » CfnEnvironmentActionsProps |
Properties for defining a CfnEnvironmentActions.
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 cfnEnvironmentActionsProps: datazone.CfnEnvironmentActionsProps = {
name: 'name',
// the properties below are optional
description: 'description',
domainIdentifier: 'domainIdentifier',
environmentIdentifier: 'environmentIdentifier',
identifier: 'identifier',
parameters: {
uri: 'uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the environment action. |
| 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. |
| parameters? | IResolvable | Aws | The parameters of the environment action. |
name
Type:
string
The name 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.
parameters?
Type:
IResolvable | Aws
(optional)
The parameters of the environment action.

.NET
Go
Java
Python
TypeScript