Interface CfnExperimentTemplate.ExperimentTemplateActionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnExperimentTemplate.ExperimentTemplateActionProperty.Jsii$Proxy
Enclosing class:
CfnExperimentTemplate

@Stability(Stable) public static interface CfnExperimentTemplate.ExperimentTemplateActionProperty extends software.amazon.jsii.JsiiSerializable
Specifies an action for an experiment template.

For more information, see Actions in the AWS Fault Injection Simulator User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.fis.*;
 ExperimentTemplateActionProperty experimentTemplateActionProperty = ExperimentTemplateActionProperty.builder()
         .actionId("actionId")
         // the properties below are optional
         .description("description")
         .parameters(Map.of(
                 "parametersKey", "parameters"))
         .startAfter(List.of("startAfter"))
         .targets(Map.of(
                 "targetsKey", "targets"))
         .build();