SecretRotationRotationRules

data class SecretRotationRotationRules(val automaticallyAfterDays: Int? = null, val duration: String? = null, val scheduleExpression: String? = null)

Constructors

Link copied to clipboard
constructor(automaticallyAfterDays: Int? = null, duration: String? = null, scheduleExpression: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies the number of days between automatic scheduled rotations of the secret. Either automatically_after_days or schedule_expression must be specified.

Link copied to clipboard
val duration: String? = null

The length of the rotation window in hours. For example, 3h for a three hour window.

Link copied to clipboard

A cron() or rate() expression that defines the schedule for rotating your secret. Either automatically_after_days or schedule_expression must be specified.