@Stability(value=Stable)
public static interface CfnResponsePlan.ActionProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getSsmAutomation()
Details about the Systems Manager automation document that will be used as a runbook during an incident.
|
@Stability(value=Stable) @Nullable default Object getSsmAutomation()
@Stability(value=Stable) static CfnResponsePlan.ActionProperty.Builder builder()
Copyright © 2022. All rights reserved.