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

cloudshift.awscdk.dsl.services.quicksight.CfnTemplateExcludePeriodConfigurationPropertyDsl.kt Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
@file:Suppress("RedundantVisibilityModifier", "RedundantUnitReturnType", "RemoveRedundantQualifierName", "unused", "UnusedImport", "ClassName", "REDUNDANT_PROJECTION", "DEPRECATION")

package cloudshift.awscdk.dsl.services.quicksight

import cloudshift.awscdk.common.CdkDslMarker
import software.amazon.awscdk.services.quicksight.CfnTemplate
import kotlin.Number
import kotlin.String

/**
 * The exclude period of `TimeRangeFilter` or `RelativeDatesFilter` .
 *
 * Example:
 *
 * ```
 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import software.amazon.awscdk.services.quicksight.*;
 * ExcludePeriodConfigurationProperty excludePeriodConfigurationProperty =
 * ExcludePeriodConfigurationProperty.builder()
 * .amount(123)
 * .granularity("granularity")
 * // the properties below are optional
 * .status("status")
 * .build();
 * ```
 *
 * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-excludeperiodconfiguration.html)
 */
@CdkDslMarker
public class CfnTemplateExcludePeriodConfigurationPropertyDsl {
    private val cdkBuilder: CfnTemplate.ExcludePeriodConfigurationProperty.Builder =
        CfnTemplate.ExcludePeriodConfigurationProperty.builder()

    /**
     * @param amount The amount or number of the exclude period.
     */
    public fun amount(amount: Number) {
        cdkBuilder.amount(amount)
    }

    /**
     * @param granularity The granularity or unit (day, month, year) of the exclude period.
     */
    public fun granularity(granularity: String) {
        cdkBuilder.granularity(granularity)
    }

    /**
     * @param status The status of the exclude period. Choose from the following options:.
     * * `ENABLED`
     * * `DISABLED`
     */
    public fun status(status: String) {
        cdkBuilder.status(status)
    }

    public fun build(): CfnTemplate.ExcludePeriodConfigurationProperty = cdkBuilder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy