SecretRotationArgs

data class SecretRotationArgs(val nextRotationTime: Output<String>? = null, val rotationPeriod: Output<String>? = null) : ConvertibleToJava<SecretRotationArgs>

Constructors

Link copied to clipboard
constructor(nextRotationTime: Output<String>? = null, rotationPeriod: Output<String>? = null)

Properties

Link copied to clipboard
val nextRotationTime: Output<String>? = null

Timestamp in UTC at which the Secret is scheduled to rotate. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

Link copied to clipboard
val rotationPeriod: Output<String>? = null

The Duration between rotation notifications. Must be in seconds and at least 3600s (1h) and at most 3153600000s (100 years). If rotationPeriod is set, next_rotation_time must be set. next_rotation_time will be advanced by this period when the service automatically sends rotation notifications.

Functions

Link copied to clipboard
open override fun toJava(): SecretRotationArgs