SecretAttributesArgs

data class SecretAttributesArgs(val enabled: Output<Boolean>? = null, val expires: Output<Int>? = null, val notBefore: Output<Int>? = null) : ConvertibleToJava<SecretAttributesArgs>

The secret management attributes.

Constructors

Link copied to clipboard
constructor(enabled: Output<Boolean>? = null, expires: Output<Int>? = null, notBefore: Output<Int>? = null)

Properties

Link copied to clipboard
val enabled: Output<Boolean>? = null

Determines whether the object is enabled.

Link copied to clipboard
val expires: Output<Int>? = null

Expiry date in seconds since 1970-01-01T00:00:00Z.

Link copied to clipboard
val notBefore: Output<Int>? = null

Not before date in seconds since 1970-01-01T00:00:00Z.

Functions

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