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

com.pulumi.awsnative.dynamodb.kotlin.outputs.TablePointInTimeRecoverySpecification.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.dynamodb.kotlin.outputs

import kotlin.Boolean
import kotlin.Suppress

/**
 * The settings used to enable point in time recovery.
 * @property pointInTimeRecoveryEnabled Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
 */
public data class TablePointInTimeRecoverySpecification(
    public val pointInTimeRecoveryEnabled: Boolean? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.dynamodb.outputs.TablePointInTimeRecoverySpecification): TablePointInTimeRecoverySpecification = TablePointInTimeRecoverySpecification(
            pointInTimeRecoveryEnabled = javaType.pointInTimeRecoveryEnabled().map({ args0 ->
                args0
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy