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

com.pulumi.aws.s3tables.kotlin.inputs.TableMaintenanceConfigurationIcebergSnapshotManagementArgs.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.inputs

import com.pulumi.aws.s3tables.inputs.TableMaintenanceConfigurationIcebergSnapshotManagementArgs.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 snapshot management.
 * See `iceberg_snapshot_management.settings` below
 * @property status Whether the configuration is enabled.
 * Valid values are `enabled` and `disabled`.
 */
public data class TableMaintenanceConfigurationIcebergSnapshotManagementArgs(
    public val settings: Output,
    public val status: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.s3tables.inputs.TableMaintenanceConfigurationIcebergSnapshotManagementArgs =
        com.pulumi.aws.s3tables.inputs.TableMaintenanceConfigurationIcebergSnapshotManagementArgs.builder()
            .settings(settings.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .status(status.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TableMaintenanceConfigurationIcebergSnapshotManagementArgs].
 */
@PulumiTagMarker
public class TableMaintenanceConfigurationIcebergSnapshotManagementArgsBuilder internal constructor() {
    private var settings: Output? =
        null

    private var status: Output? = null

    /**
     * @param value Settings for snapshot management.
     * See `iceberg_snapshot_management.settings` below
     */
    @JvmName("aujdkcinirloovbg")
    public suspend fun settings(`value`: Output) {
        this.settings = value
    }

    /**
     * @param value Whether the configuration is enabled.
     * Valid values are `enabled` and `disabled`.
     */
    @JvmName("teepoubscyvrjjcw")
    public suspend fun status(`value`: Output) {
        this.status = value
    }

    /**
     * @param value Settings for snapshot management.
     * See `iceberg_snapshot_management.settings` below
     */
    @JvmName("vrqnqbrbhmxeilfw")
    public suspend fun settings(`value`: TableMaintenanceConfigurationIcebergSnapshotManagementSettingsArgs) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.settings = mapped
    }

    /**
     * @param argument Settings for snapshot management.
     * See `iceberg_snapshot_management.settings` below
     */
    @JvmName("ohqpsywnkldgekdb")
    public suspend fun settings(argument: suspend TableMaintenanceConfigurationIcebergSnapshotManagementSettingsArgsBuilder.() -> Unit) {
        val toBeMapped =
            TableMaintenanceConfigurationIcebergSnapshotManagementSettingsArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.settings = mapped
    }

    /**
     * @param value Whether the configuration is enabled.
     * Valid values are `enabled` and `disabled`.
     */
    @JvmName("tkqxnivioxporhwx")
    public suspend fun status(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.status = mapped
    }

    internal fun build(): TableMaintenanceConfigurationIcebergSnapshotManagementArgs =
        TableMaintenanceConfigurationIcebergSnapshotManagementArgs(
            settings = settings ?: throw PulumiNullFieldException("settings"),
            status = status ?: throw PulumiNullFieldException("status"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy