Interface CfnResponsePlan.ActionProperty

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

@Stability(Stable) public static interface CfnResponsePlan.ActionProperty extends software.amazon.jsii.JsiiSerializable
The Action property type specifies the configuration to launch.

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.ssmincidents.*;
 ActionProperty actionProperty = ActionProperty.builder()
         .ssmAutomation(SsmAutomationProperty.builder()
                 .documentName("documentName")
                 .roleArn("roleArn")
                 // the properties below are optional
                 .documentVersion("documentVersion")
                 .dynamicParameters(List.of(DynamicSsmParameterProperty.builder()
                         .key("key")
                         .value(DynamicSsmParameterValueProperty.builder()
                                 .variable("variable")
                                 .build())
                         .build()))
                 .parameters(List.of(SsmParameterProperty.builder()
                         .key("key")
                         .values(List.of("values"))
                         .build()))
                 .targetAccount("targetAccount")
                 .build())
         .build();
 

See Also: