Interface CfnPlanProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlanProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:07.804Z")
@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();
- See Also:
-
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.- See Also:
-
getRotationIds
The Amazon Resource Names (ARNs) of the on-call rotations associated with the plan.- See Also:
-
getStages
A list of stages that the escalation plan or engagement plan uses to engage contacts and contact methods.- See Also:
-
builder
- Returns:
- a
CfnPlanProps.Builder
ofCfnPlanProps
-