com.pulumi.awsnative.s3outposts.kotlin.outputs.BucketAbortIncompleteMultipartUpload.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.s3outposts.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
* Specifies the days since the initiation of an incomplete multipart upload that Amazon S3Outposts will wait before permanently removing all parts of the upload.
* @property daysAfterInitiation Specifies the number of days after which Amazon S3Outposts aborts an incomplete multipart upload.
*/
public data class BucketAbortIncompleteMultipartUpload(
public val daysAfterInitiation: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3outposts.outputs.BucketAbortIncompleteMultipartUpload): BucketAbortIncompleteMultipartUpload = BucketAbortIncompleteMultipartUpload(
daysAfterInitiation = javaType.daysAfterInitiation(),
)
}
}