/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Groupings of columns that work together in certain Amazon QuickSight
* features. This is a variant type structure. For this structure to be valid, only
* one of the attributes can be non-null.See Also:
AWS
* API Reference
Geospatial column group that denotes a hierarchy.
*/ inline const GeoSpatialColumnGroup& GetGeoSpatialColumnGroup() const{ return m_geoSpatialColumnGroup; } /** *Geospatial column group that denotes a hierarchy.
*/ inline bool GeoSpatialColumnGroupHasBeenSet() const { return m_geoSpatialColumnGroupHasBeenSet; } /** *Geospatial column group that denotes a hierarchy.
*/ inline void SetGeoSpatialColumnGroup(const GeoSpatialColumnGroup& value) { m_geoSpatialColumnGroupHasBeenSet = true; m_geoSpatialColumnGroup = value; } /** *Geospatial column group that denotes a hierarchy.
*/ inline void SetGeoSpatialColumnGroup(GeoSpatialColumnGroup&& value) { m_geoSpatialColumnGroupHasBeenSet = true; m_geoSpatialColumnGroup = std::move(value); } /** *Geospatial column group that denotes a hierarchy.
*/ inline ColumnGroup& WithGeoSpatialColumnGroup(const GeoSpatialColumnGroup& value) { SetGeoSpatialColumnGroup(value); return *this;} /** *Geospatial column group that denotes a hierarchy.
*/ inline ColumnGroup& WithGeoSpatialColumnGroup(GeoSpatialColumnGroup&& value) { SetGeoSpatialColumnGroup(std::move(value)); return *this;} private: GeoSpatialColumnGroup m_geoSpatialColumnGroup; bool m_geoSpatialColumnGroupHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws