/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The option that determines the hierarchy of the fields that are built within
* a visual's field wells. These fields can't be duplicated to other
* visuals.See Also:
AWS
* API Reference
The hierarchy ID of the explicit hierarchy.
*/ inline const Aws::String& GetHierarchyId() const{ return m_hierarchyId; } /** *The hierarchy ID of the explicit hierarchy.
*/ inline bool HierarchyIdHasBeenSet() const { return m_hierarchyIdHasBeenSet; } /** *The hierarchy ID of the explicit hierarchy.
*/ inline void SetHierarchyId(const Aws::String& value) { m_hierarchyIdHasBeenSet = true; m_hierarchyId = value; } /** *The hierarchy ID of the explicit hierarchy.
*/ inline void SetHierarchyId(Aws::String&& value) { m_hierarchyIdHasBeenSet = true; m_hierarchyId = std::move(value); } /** *The hierarchy ID of the explicit hierarchy.
*/ inline void SetHierarchyId(const char* value) { m_hierarchyIdHasBeenSet = true; m_hierarchyId.assign(value); } /** *The hierarchy ID of the explicit hierarchy.
*/ inline ExplicitHierarchy& WithHierarchyId(const Aws::String& value) { SetHierarchyId(value); return *this;} /** *The hierarchy ID of the explicit hierarchy.
*/ inline ExplicitHierarchy& WithHierarchyId(Aws::String&& value) { SetHierarchyId(std::move(value)); return *this;} /** *The hierarchy ID of the explicit hierarchy.
*/ inline ExplicitHierarchy& WithHierarchyId(const char* value) { SetHierarchyId(value); return *this;} /** *The list of columns that define the explicit hierarchy.
*/ inline const Aws::VectorThe list of columns that define the explicit hierarchy.
*/ inline bool ColumnsHasBeenSet() const { return m_columnsHasBeenSet; } /** *The list of columns that define the explicit hierarchy.
*/ inline void SetColumns(const Aws::VectorThe list of columns that define the explicit hierarchy.
*/ inline void SetColumns(Aws::VectorThe list of columns that define the explicit hierarchy.
*/ inline ExplicitHierarchy& WithColumns(const Aws::VectorThe list of columns that define the explicit hierarchy.
*/ inline ExplicitHierarchy& WithColumns(Aws::VectorThe list of columns that define the explicit hierarchy.
*/ inline ExplicitHierarchy& AddColumns(const ColumnIdentifier& value) { m_columnsHasBeenSet = true; m_columns.push_back(value); return *this; } /** *The list of columns that define the explicit hierarchy.
*/ inline ExplicitHierarchy& AddColumns(ColumnIdentifier&& value) { m_columnsHasBeenSet = true; m_columns.push_back(std::move(value)); return *this; } /** *The option that determines the drill down filters for the explicit * hierarchy.
*/ inline const Aws::VectorThe option that determines the drill down filters for the explicit * hierarchy.
*/ inline bool DrillDownFiltersHasBeenSet() const { return m_drillDownFiltersHasBeenSet; } /** *The option that determines the drill down filters for the explicit * hierarchy.
*/ inline void SetDrillDownFilters(const Aws::VectorThe option that determines the drill down filters for the explicit * hierarchy.
*/ inline void SetDrillDownFilters(Aws::VectorThe option that determines the drill down filters for the explicit * hierarchy.
*/ inline ExplicitHierarchy& WithDrillDownFilters(const Aws::VectorThe option that determines the drill down filters for the explicit * hierarchy.
*/ inline ExplicitHierarchy& WithDrillDownFilters(Aws::VectorThe option that determines the drill down filters for the explicit * hierarchy.
*/ inline ExplicitHierarchy& AddDrillDownFilters(const DrillDownFilter& value) { m_drillDownFiltersHasBeenSet = true; m_drillDownFilters.push_back(value); return *this; } /** *The option that determines the drill down filters for the explicit * hierarchy.
*/ inline ExplicitHierarchy& AddDrillDownFilters(DrillDownFilter&& value) { m_drillDownFiltersHasBeenSet = true; m_drillDownFilters.push_back(std::move(value)); return *this; } private: Aws::String m_hierarchyId; bool m_hierarchyIdHasBeenSet = false; Aws::Vector