![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.opensearchservice.kotlin.outputs.DomainSnapshotOptions.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.opensearchservice.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property automatedSnapshotStartHour The hour in UTC during which the service takes an automated daily snapshot of the indexes in the OpenSearch Service domain. For example, if you specify 0, OpenSearch Service takes an automated snapshot everyday between midnight and 1 am. You can specify a value between 0 and 23.
*/
public data class DomainSnapshotOptions(
public val automatedSnapshotStartHour: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.opensearchservice.outputs.DomainSnapshotOptions): DomainSnapshotOptions = DomainSnapshotOptions(
automatedSnapshotStartHour = javaType.automatedSnapshotStartHour().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy