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: