Interface CfnResponsePlanMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResponsePlanMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:32.505Z")
@Stability(Stable)
public interface CfnResponsePlanMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnResponsePlanPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.*;
CfnResponsePlanMixinProps cfnResponsePlanMixinProps = CfnResponsePlanMixinProps.builder()
.actions(List.of(ActionProperty.builder()
.ssmAutomation(SsmAutomationProperty.builder()
.documentName("documentName")
.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()))
.roleArn("roleArn")
.targetAccount("targetAccount")
.build())
.build()))
.chatChannel(ChatChannelProperty.builder()
.chatbotSns(List.of("chatbotSns"))
.build())
.displayName("displayName")
.engagements(List.of("engagements"))
.incidentTemplate(IncidentTemplateProperty.builder()
.dedupeString("dedupeString")
.impact(123)
.incidentTags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.notificationTargets(List.of(NotificationTargetItemProperty.builder()
.snsTopicArn("snsTopicArn")
.build()))
.summary("summary")
.title("title")
.build())
.integrations(List.of(IntegrationProperty.builder()
.pagerDutyConfiguration(PagerDutyConfigurationProperty.builder()
.name("name")
.pagerDutyIncidentConfiguration(PagerDutyIncidentConfigurationProperty.builder()
.serviceId("serviceId")
.build())
.secretId("secretId")
.build())
.build()))
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResponsePlanMixinPropsstatic final classAn implementation forCfnResponsePlanMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe actions that the response plan starts at the beginning of an incident.default ObjectThe chat channel used for collaboration during an incident.default StringThe human readable name of the response plan.The Amazon Resource Name (ARN) for the contacts and escalation plans that the response plan engages during an incident.default ObjectDetails used to create an incident when using this response plan.default ObjectInformation about third-party services integrated into the response plan.default StringgetName()The name of the response plan.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActions
The actions that the response plan starts at the beginning of an incident.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnResponsePlanPropsMixin.ActionProperty>- See Also:
-
getChatChannel
The chat channel used for collaboration during an incident.Returns union: either
IResolvableorCfnResponsePlanPropsMixin.ChatChannelProperty- See Also:
-
getDisplayName
The human readable name of the response plan.- See Also:
-
getEngagements
The Amazon Resource Name (ARN) for the contacts and escalation plans that the response plan engages during an incident.- See Also:
-
getIncidentTemplate
Details used to create an incident when using this response plan.Returns union: either
IResolvableorCfnResponsePlanPropsMixin.IncidentTemplateProperty- See Also:
-
getIntegrations
Information about third-party services integrated into the response plan.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnResponsePlanPropsMixin.IntegrationProperty>- See Also:
-
getName
The name of the response plan.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnResponsePlanMixinProps.BuilderofCfnResponsePlanMixinProps
-