Interface CfnPlanProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlanProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.823Z")
@Stability(Stable)
public interface CfnPlanProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPlan
.
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.ssmcontacts.*; CfnPlanProps cfnPlanProps = CfnPlanProps.builder() .contactId("contactId") // the properties below are optional .rotationIds(List.of("rotationIds")) .stages(List.of(StageProperty.builder() .durationInMinutes(123) // the properties below are optional .targets(List.of(TargetsProperty.builder() .channelTargetInfo(ChannelTargetInfoProperty.builder() .channelId("channelId") .retryIntervalInMinutes(123) .build()) .contactTargetInfo(ContactTargetInfoProperty.builder() .contactId("contactId") .isEssential(false) .build()) .build())) .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPlanProps
static final class
An implementation forCfnPlanProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPlanProps.Builder
builder()
The Amazon Resource Name (ARN) of the contact.The Amazon Resource Names (ARNs) of the on-call rotations associated with the plan.default Object
A list of stages that the escalation plan or engagement plan uses to engage contacts and contact methods.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContactId
The Amazon Resource Name (ARN) of the contact. -
getRotationIds
The Amazon Resource Names (ARNs) of the on-call rotations associated with the plan. -
getStages
A list of stages that the escalation plan or engagement plan uses to engage contacts and contact methods. -
builder
- Returns:
- a
CfnPlanProps.Builder
ofCfnPlanProps
-