GetSecretRotationRotationRule constructor

const GetSecretRotationRotationRule({
  1. required Input<int> automaticallyAfterDays,
  2. required Input<String> duration,
  3. required Input<String> scheduleExpression,
})

Creates a new GetSecretRotationRotationRule. automaticallyAfterDays Number of days between automatic scheduled rotations of the secret. duration Length of the rotation window in hours. scheduleExpression cron() or rate() expression that defines the schedule for rotating the secret.

Implementation

const GetSecretRotationRotationRule({
  required this.automaticallyAfterDays,
  required this.duration,
  required this.scheduleExpression,
});