Interface CfnResponsePlan.SsmAutomationProperty

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

@Stability(Stable) public static interface CfnResponsePlan.SsmAutomationProperty extends software.amazon.jsii.JsiiSerializable
The SsmAutomation property type specifies details about the Systems Manager Automation runbook that will be used as the runbook during an incident.

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.*;
 SsmAutomationProperty ssmAutomationProperty = 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();
 

See Also: