public static interface CfnResponsePlan.ActionProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnResponsePlan.ActionProperty.Builder
A builder for
CfnResponsePlan.ActionProperty |
static class |
CfnResponsePlan.ActionProperty.Jsii$Proxy
An implementation for
CfnResponsePlan.ActionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnResponsePlan.ActionProperty.Builder |
builder() |
default java.lang.Object |
getSsmAutomation()
Details about the Systems Manager automation document that will be used as a runbook during an incident.
|
default java.lang.Object getSsmAutomation()
static CfnResponsePlan.ActionProperty.Builder builder()