com.pulumi.aws.s3tables.kotlin.outputs.TableMaintenanceConfigurationIcebergSnapshotManagement.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 snapshot management.
* See `iceberg_snapshot_management.settings` below
* @property status Whether the configuration is enabled.
* Valid values are `enabled` and `disabled`.
*/
public data class TableMaintenanceConfigurationIcebergSnapshotManagement(
public val settings: TableMaintenanceConfigurationIcebergSnapshotManagementSettings,
public val status: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.s3tables.outputs.TableMaintenanceConfigurationIcebergSnapshotManagement): TableMaintenanceConfigurationIcebergSnapshotManagement =
TableMaintenanceConfigurationIcebergSnapshotManagement(
settings = javaType.settings().let({ args0 ->
com.pulumi.aws.s3tables.kotlin.outputs.TableMaintenanceConfigurationIcebergSnapshotManagementSettings.Companion.toKotlin(args0)
}),
status = javaType.status(),
)
}
}