Interface CfnRestoreTestingPlanProps

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

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

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.backup.*;
 CfnRestoreTestingPlanProps cfnRestoreTestingPlanProps = CfnRestoreTestingPlanProps.builder()
         .recoveryPointSelection(RestoreTestingRecoveryPointSelectionProperty.builder()
                 .algorithm("algorithm")
                 .includeVaults(List.of("includeVaults"))
                 .recoveryPointTypes(List.of("recoveryPointTypes"))
                 // the properties below are optional
                 .excludeVaults(List.of("excludeVaults"))
                 .selectionWindowDays(123)
                 .build())
         .restoreTestingPlanName("restoreTestingPlanName")
         .scheduleExpression("scheduleExpression")
         // the properties below are optional
         .scheduleExpressionTimezone("scheduleExpressionTimezone")
         .startWindowHours(123)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: