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

com.pulumi.awsnative.s3.kotlin.outputs.BucketDataExport.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 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 - 2024 Weber Informatics LLC | Privacy Policy