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

com.pulumi.aws.quicksight.kotlin.outputs.DataSetRefreshPropertiesRefreshConfigurationIncrementalRefreshLookbackWindow.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.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