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

cloudshift.awscdk.dsl.services.quicksight.CfnAnalysisMissingDataConfigurationPropertyDsl.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.CfnAnalysis
import kotlin.String

/**
 * The configuration options that determine how missing data is treated during the rendering of a
 * line chart.
 *
 * 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.*;
 * MissingDataConfigurationProperty missingDataConfigurationProperty =
 * MissingDataConfigurationProperty.builder()
 * .treatmentOption("treatmentOption")
 * .build();
 * ```
 *
 * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-missingdataconfiguration.html)
 */
@CdkDslMarker
public class CfnAnalysisMissingDataConfigurationPropertyDsl {
    private val cdkBuilder: CfnAnalysis.MissingDataConfigurationProperty.Builder =
        CfnAnalysis.MissingDataConfigurationProperty.builder()

    /**
     * @param treatmentOption The treatment option that determines how missing data should be
     * rendered. Choose from the following options:.
     * * `INTERPOLATE` : Interpolate missing values between the prior and the next known value.
     * * `SHOW_AS_ZERO` : Show missing values as the value `0` .
     * * `SHOW_AS_BLANK` : Display a blank space when rendering missing data.
     */
    public fun treatmentOption(treatmentOption: String) {
        cdkBuilder.treatmentOption(treatmentOption)
    }

    public fun build(): CfnAnalysis.MissingDataConfigurationProperty = cdkBuilder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy