![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.s3.kotlin.outputs.BucketDataExport.kt Maven / Gradle / Ivy
@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(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy