com.pulumi.awsnative.s3.kotlin.outputs.BucketAccelerateConfiguration.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.s3.kotlin.outputs
import com.pulumi.awsnative.s3.kotlin.enums.BucketAccelerateConfigurationAccelerationStatus
import kotlin.Suppress
/**
* Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
* @property accelerationStatus Specifies the transfer acceleration status of the bucket.
*/
public data class BucketAccelerateConfiguration(
public val accelerationStatus: BucketAccelerateConfigurationAccelerationStatus,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3.outputs.BucketAccelerateConfiguration): BucketAccelerateConfiguration = BucketAccelerateConfiguration(
accelerationStatus = javaType.accelerationStatus().let({ args0 ->
com.pulumi.awsnative.s3.kotlin.enums.BucketAccelerateConfigurationAccelerationStatus.Companion.toKotlin(args0)
}),
)
}
}