com.pulumi.awsnative.s3.kotlin.outputs.BucketDataExport.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 kotlin.String
import kotlin.Suppress
/**
* Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.
* @property destination The place to store the data for an analysis.
* @property outputSchemaVersion The version of the output schema to use when exporting data. Must be ``V_1``.
*/
public data class BucketDataExport(
public val destination: BucketDestination,
public val outputSchemaVersion: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3.outputs.BucketDataExport): BucketDataExport = BucketDataExport(
destination = javaType.destination().let({ args0 ->
com.pulumi.awsnative.s3.kotlin.outputs.BucketDestination.Companion.toKotlin(args0)
}),
outputSchemaVersion = javaType.outputSchemaVersion(),
)
}
}