Interface CfnResponsePlan.SsmParameterProperty

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

@Stability(Stable) public static interface CfnResponsePlan.SsmParameterProperty extends software.amazon.jsii.JsiiSerializable
The key-value pair parameters to use when running the Automation runbook.

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.*;
 SsmParameterProperty ssmParameterProperty = SsmParameterProperty.builder()
         .key("key")
         .values(List.of("values"))
         .build();
 

See Also: