Interface CfnRotationSchedule.RotationRulesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRotationSchedule.RotationRulesProperty.Jsii$Proxy
Enclosing class:
CfnRotationSchedule

@Stability(Stable) public static interface CfnRotationSchedule.RotationRulesProperty extends software.amazon.jsii.JsiiSerializable
The rotation schedule and window.

We recommend you use ScheduleExpression to set a cron or rate expression for the schedule and Duration to set the length of the rotation window.

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.secretsmanager.*;
 RotationRulesProperty rotationRulesProperty = RotationRulesProperty.builder()
         .automaticallyAfterDays(123)
         .duration("duration")
         .scheduleExpression("scheduleExpression")
         .build();
 

See Also: