Interface CfnPlanMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlanMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-27T13:12:21.166Z")
@Stability(Stable)
public interface CfnPlanMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPlanPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ssmcontacts.*;
CfnPlanMixinProps cfnPlanMixinProps = CfnPlanMixinProps.builder()
.contactId("contactId")
.rotationIds(List.of("rotationIds"))
.stages(List.of(StageProperty.builder()
.durationInMinutes(123)
.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlanMixinPropsstatic final classAn implementation forCfnPlanMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPlanMixinProps.Builderbuilder()default StringThe Amazon Resource Name (ARN) of the contact.The Amazon Resource Names (ARNs) of the on-call rotations associated with the plan.default ObjectA 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnPlanPropsMixin.StageProperty>- See Also:
-
builder
- Returns:
- a
CfnPlanMixinProps.BuilderofCfnPlanMixinProps
-