@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.347Z") @Stability(value=Stable) public interface CfnResponsePlanProps 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.*;
CfnResponsePlanProps cfnResponsePlanProps = CfnResponsePlanProps.builder()
.incidentTemplate(IncidentTemplateProperty.builder()
.impact(123)
.title("title")
// the properties below are optional
.dedupeString("dedupeString")
.incidentTags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.notificationTargets(List.of(NotificationTargetItemProperty.builder()
.snsTopicArn("snsTopicArn")
.build()))
.summary("summary")
.build())
.name("name")
// the properties below are optional
.actions(List.of(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()))
.chatChannel(ChatChannelProperty.builder()
.chatbotSns(List.of("chatbotSns"))
.build())
.displayName("displayName")
.engagements(List.of("engagements"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnResponsePlanProps.Builder
A builder for
CfnResponsePlanProps |
static class |
CfnResponsePlanProps.Jsii$Proxy
An implementation for
CfnResponsePlanProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnResponsePlanProps.Builder |
builder() |
default Object |
getActions()
The actions that the response plan starts at the beginning of an incident.
|
default Object |
getChatChannel()
The AWS Chatbot chat channel used for collaboration during an incident.
|
default String |
getDisplayName()
The human readable name of the response plan.
|
default List<String> |
getEngagements()
The contacts and escalation plans that the response plan engages during an incident.
|
Object |
getIncidentTemplate()
Details used to create an incident when using this response plan.
|
String |
getName()
The name of the response plan.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull Object getIncidentTemplate()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getActions()
@Stability(value=Stable) @Nullable default Object getChatChannel()
@Stability(value=Stable) @Nullable default String getDisplayName()
@Stability(value=Stable) @Nullable default List<String> getEngagements()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnResponsePlanProps.Builder builder()
CfnResponsePlanProps.Builder of CfnResponsePlanPropsCopyright © 2022. All rights reserved.