Interface CfnResponsePlan.DynamicSsmParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResponsePlan.DynamicSsmParameterProperty.Jsii$Proxy
- Enclosing class:
CfnResponsePlan
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResponsePlan.DynamicSsmParameterProperty
static final class
An implementation forCfnResponsePlan.DynamicSsmParameterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key parameter to use when running the Systems Manager Automation runbook.- See Also:
-
getValue
The dynamic parameter value.- See Also:
-
builder
-