/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

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

*/ class ColumnGroup { public: AWS_QUICKSIGHT_API ColumnGroup(); AWS_QUICKSIGHT_API ColumnGroup(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API ColumnGroup& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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