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

com.pulumi.aws.s3tables.kotlin.outputs.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemoval.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: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.s3tables.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property settings Settings for unreferenced file removal.
 * See `iceberg_unreferenced_file_removal.settings` below
 * @property status Whether the configuration is enabled.
 * Valid values are `enabled` and `disabled`.
 */
public data class TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemoval(
    public val settings: TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalSettings,
    public val status: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.s3tables.outputs.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemoval): TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemoval =
            TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemoval(
                settings = javaType.settings().let({ args0 ->
                    com.pulumi.aws.s3tables.kotlin.outputs.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalSettings.Companion.toKotlin(args0)
                }),
                status = javaType.status(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy