All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.s3.kotlin.outputs.BucketAccelerateConfiguration.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@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)
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy