interface ExperimentTemplateActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FIS.Mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfis/mixins#CfnExperimentTemplatePropsMixin_ExperimentTemplateActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.fis.mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateActionProperty |
Python | aws_cdk.mixins_preview.aws_fis.mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fis » mixins » CfnExperimentTemplatePropsMixin » ExperimentTemplateActionProperty |
Specifies an action for an experiment template.
For more information, see Actions in the AWS Fault Injection Service User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fis_mixins } from '@aws-cdk/mixins-preview/aws-fis';
const experimentTemplateActionProperty: fis_mixins.CfnExperimentTemplatePropsMixin.ExperimentTemplateActionProperty = {
actionId: 'actionId',
description: 'description',
parameters: {
parametersKey: 'parameters',
},
startAfter: ['startAfter'],
targets: {
targetsKey: 'targets',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The ID of the action. |
| description? | string | A description for the action. |
| parameters? | { [string]: string } | IResolvable | The parameters for the action. |
| start | string[] | The name of the action that must be completed before the current action starts. |
| targets? | { [string]: string } | IResolvable | The targets for the action. |
actionId?
Type:
string
(optional)
The ID of the action.
description?
Type:
string
(optional)
A description for the action.
parameters?
Type:
{ [string]: string } | IResolvable
(optional)
The parameters for the action.
startAfter?
Type:
string[]
(optional)
The name of the action that must be completed before the current action starts.
targets?
Type:
{ [string]: string } | IResolvable
(optional)
The targets for the action.

.NET
Go
Java
Python
TypeScript