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

cloudshift.awscdk.dsl.services.quicksight.CfnAnalysisClusterMarkerConfigurationPropertyDsl.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.IResolvable
import software.amazon.awscdk.services.quicksight.CfnAnalysis

/**
 * The cluster marker configuration of the geospatial map selected point style.
 *
 * 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.*;
 * ClusterMarkerConfigurationProperty clusterMarkerConfigurationProperty =
 * ClusterMarkerConfigurationProperty.builder()
 * .clusterMarker(ClusterMarkerProperty.builder()
 * .simpleClusterMarker(SimpleClusterMarkerProperty.builder()
 * .color("color")
 * .build())
 * .build())
 * .build();
 * ```
 *
 * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-clustermarkerconfiguration.html)
 */
@CdkDslMarker
public class CfnAnalysisClusterMarkerConfigurationPropertyDsl {
    private val cdkBuilder: CfnAnalysis.ClusterMarkerConfigurationProperty.Builder =
        CfnAnalysis.ClusterMarkerConfigurationProperty.builder()

    /**
     * @param clusterMarker The cluster marker that is a part of the cluster marker configuration.
     */
    public fun clusterMarker(clusterMarker: IResolvable) {
        cdkBuilder.clusterMarker(clusterMarker)
    }

    /**
     * @param clusterMarker The cluster marker that is a part of the cluster marker configuration.
     */
    public fun clusterMarker(clusterMarker: CfnAnalysis.ClusterMarkerProperty) {
        cdkBuilder.clusterMarker(clusterMarker)
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy