BucketLifecycleRuleTransitionArgs

data class BucketLifecycleRuleTransitionArgs(val createdBeforeDate: Output<String>? = null, val days: Output<Int>? = null, val storageClass: Output<String>? = null) : ConvertibleToJava<BucketLifecycleRuleTransitionArgs>

Constructors

Link copied to clipboard
fun BucketLifecycleRuleTransitionArgs(createdBeforeDate: Output<String>? = null, days: Output<Int>? = null, storageClass: Output<String>? = null)

Functions

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

Properties

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

Specifies the time before which the rules take effect. The date must conform to the ISO8601 format and always be UTC 00:00. For example: 2002-10-11T00:00:00.000Z indicates that objects updated before 2002-10-11T00:00:00.000Z are deleted or converted to another storage class, and objects updated after this time (including this time) are not deleted or converted.

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

Specifies the number of days after object creation when the specific rule action takes effect.

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

The storage class to apply. Can be "Standard", "IA" and "Archive". Defaults to "Standard".