com.pulumi.aws.s3tables.kotlin.outputs.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemoval.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.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