Interface CfnResponsePlan.DynamicSsmParameterProperty

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

@Stability(Stable) public static interface CfnResponsePlan.DynamicSsmParameterProperty extends software.amazon.jsii.JsiiSerializable
When you add a runbook to a response plan, you can specify the parameters the runbook should use at runtime.

Response plans support parameters with both static and dynamic values. For static values, you enter the value when you define the parameter in the response plan. For dynamic values, the system determines the correct parameter value by collecting information from the incident. Incident Manager supports the following dynamic parameters:

Incident ARN

When Incident Manager creates an incident, the system captures the Amazon Resource Name (ARN) of the corresponding incident record and enters it for this parameter in the runbook.

This value can only be assigned to parameters of type String . If assigned to a parameter of any other type, the runbook fails to run.

Involved resources

When Incident Manager creates an incident, the system captures the ARNs of the resources involved in the incident. These resource ARNs are then assigned to this parameter in the runbook.

This value can only be assigned to parameters of type StringList . If assigned to a parameter of any other type, the runbook fails to run.

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.*;
 DynamicSsmParameterProperty dynamicSsmParameterProperty = DynamicSsmParameterProperty.builder()
         .key("key")
         .value(DynamicSsmParameterValueProperty.builder()
                 .variable("variable")
                 .build())
         .build();