com.pulumi.aws.quicksight.kotlin.outputs.DataSetRefreshPropertiesRefreshConfigurationIncrementalRefreshLookbackWindow.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.quicksight.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property columnName The name of the lookback window column.
* @property size The lookback window column size.
* @property sizeUnit The size unit that is used for the lookback window column. Valid values for this structure are `HOUR`, `DAY`, and `WEEK`.
*/
public data class DataSetRefreshPropertiesRefreshConfigurationIncrementalRefreshLookbackWindow(
public val columnName: String,
public val size: Int,
public val sizeUnit: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.quicksight.outputs.DataSetRefreshPropertiesRefreshConfigurationIncrementalRefreshLookbackWindow): DataSetRefreshPropertiesRefreshConfigurationIncrementalRefreshLookbackWindow =
DataSetRefreshPropertiesRefreshConfigurationIncrementalRefreshLookbackWindow(
columnName = javaType.columnName(),
size = javaType.size(),
sizeUnit = javaType.sizeUnit(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy