@Stability(value=Stable)
public static interface CfnRotationSchedule.RotationRulesProperty
extends software.amazon.jsii.JsiiSerializable
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)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRotationSchedule.RotationRulesProperty.Builder
A builder for
CfnRotationSchedule.RotationRulesProperty |
static class |
CfnRotationSchedule.RotationRulesProperty.Jsii$Proxy
An implementation for
CfnRotationSchedule.RotationRulesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnRotationSchedule.RotationRulesProperty.Builder |
builder() |
default Number |
getAutomaticallyAfterDays()
Specifies the number of days between automatic scheduled rotations of the secret.
|
@Stability(value=Stable) @Nullable default Number getAutomaticallyAfterDays()
Secrets Manager schedules the next rotation when the previous one is complete. Secrets Manager schedules the date by adding the rotation interval (number of days) to the actual date of the last rotation. The service chooses the hour within that 24-hour date window randomly. The minute is also chosen somewhat randomly, but weighted towards the top of the hour and influenced by a variety of factors that help distribute load.
@Stability(value=Stable) static CfnRotationSchedule.RotationRulesProperty.Builder builder()
Copyright © 2022. All rights reserved.