com.pulumi.aws.s3tables.kotlin.inputs.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgs.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.inputs
import com.pulumi.aws.s3tables.inputs.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @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 TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgs(
public val settings: Output,
public val status: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.s3tables.inputs.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgs =
com.pulumi.aws.s3tables.inputs.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgs.builder()
.settings(settings.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.status(status.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgs].
*/
@PulumiTagMarker
public class TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgsBuilder internal constructor() {
private var settings:
Output? = null
private var status: Output? = null
/**
* @param value Settings for unreferenced file removal.
* See `iceberg_unreferenced_file_removal.settings` below
*/
@JvmName("exhtckkqkcaasgvf")
public suspend fun settings(`value`: Output) {
this.settings = value
}
/**
* @param value Whether the configuration is enabled.
* Valid values are `enabled` and `disabled`.
*/
@JvmName("creiaytehsbbpujs")
public suspend fun status(`value`: Output) {
this.status = value
}
/**
* @param value Settings for unreferenced file removal.
* See `iceberg_unreferenced_file_removal.settings` below
*/
@JvmName("rbkbuwolueseyhav")
public suspend fun settings(`value`: TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalSettingsArgs) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.settings = mapped
}
/**
* @param argument Settings for unreferenced file removal.
* See `iceberg_unreferenced_file_removal.settings` below
*/
@JvmName("jmxqvnjoqghenwok")
public suspend fun settings(argument: suspend TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalSettingsArgsBuilder.() -> Unit) {
val toBeMapped =
TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalSettingsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.settings = mapped
}
/**
* @param value Whether the configuration is enabled.
* Valid values are `enabled` and `disabled`.
*/
@JvmName("xgydkwmmiagkqnlo")
public suspend fun status(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.status = mapped
}
internal fun build(): TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgs =
TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalArgs(
settings = settings ?: throw PulumiNullFieldException("settings"),
status = status ?: throw PulumiNullFieldException("status"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy