Interface CfnZonalAutoshiftConfigurationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnZonalAutoshiftConfigurationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:11.505Z") @Stability(Stable) public interface CfnZonalAutoshiftConfigurationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnZonalAutoshiftConfiguration.

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.arczonalshift.*;
 CfnZonalAutoshiftConfigurationProps cfnZonalAutoshiftConfigurationProps = CfnZonalAutoshiftConfigurationProps.builder()
         .resourceIdentifier("resourceIdentifier")
         // the properties below are optional
         .practiceRunConfiguration(PracticeRunConfigurationProperty.builder()
                 .outcomeAlarms(List.of(ControlConditionProperty.builder()
                         .alarmIdentifier("alarmIdentifier")
                         .type("type")
                         .build()))
                 // the properties below are optional
                 .blockedDates(List.of("blockedDates"))
                 .blockedWindows(List.of("blockedWindows"))
                 .blockingAlarms(List.of(ControlConditionProperty.builder()
                         .alarmIdentifier("alarmIdentifier")
                         .type("type")
                         .build()))
                 .build())
         .zonalAutoshiftStatus("zonalAutoshiftStatus")
         .build();
 

See Also: