/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The target of a pivot table field collapse state.See Also:
* AWS
* API Reference
The field ID of the pivot table that the collapse state needs to be set * to.
*/ inline const Aws::String& GetFieldId() const{ return m_fieldId; } /** *The field ID of the pivot table that the collapse state needs to be set * to.
*/ inline bool FieldIdHasBeenSet() const { return m_fieldIdHasBeenSet; } /** *The field ID of the pivot table that the collapse state needs to be set * to.
*/ inline void SetFieldId(const Aws::String& value) { m_fieldIdHasBeenSet = true; m_fieldId = value; } /** *The field ID of the pivot table that the collapse state needs to be set * to.
*/ inline void SetFieldId(Aws::String&& value) { m_fieldIdHasBeenSet = true; m_fieldId = std::move(value); } /** *The field ID of the pivot table that the collapse state needs to be set * to.
*/ inline void SetFieldId(const char* value) { m_fieldIdHasBeenSet = true; m_fieldId.assign(value); } /** *The field ID of the pivot table that the collapse state needs to be set * to.
*/ inline PivotTableFieldCollapseStateTarget& WithFieldId(const Aws::String& value) { SetFieldId(value); return *this;} /** *The field ID of the pivot table that the collapse state needs to be set * to.
*/ inline PivotTableFieldCollapseStateTarget& WithFieldId(Aws::String&& value) { SetFieldId(std::move(value)); return *this;} /** *The field ID of the pivot table that the collapse state needs to be set * to.
*/ inline PivotTableFieldCollapseStateTarget& WithFieldId(const char* value) { SetFieldId(value); return *this;} /** *The data path of the pivot table's header. Used to set the collapse * state.
*/ inline const Aws::VectorThe data path of the pivot table's header. Used to set the collapse * state.
*/ inline bool FieldDataPathValuesHasBeenSet() const { return m_fieldDataPathValuesHasBeenSet; } /** *The data path of the pivot table's header. Used to set the collapse * state.
*/ inline void SetFieldDataPathValues(const Aws::VectorThe data path of the pivot table's header. Used to set the collapse * state.
*/ inline void SetFieldDataPathValues(Aws::VectorThe data path of the pivot table's header. Used to set the collapse * state.
*/ inline PivotTableFieldCollapseStateTarget& WithFieldDataPathValues(const Aws::VectorThe data path of the pivot table's header. Used to set the collapse * state.
*/ inline PivotTableFieldCollapseStateTarget& WithFieldDataPathValues(Aws::VectorThe data path of the pivot table's header. Used to set the collapse * state.
*/ inline PivotTableFieldCollapseStateTarget& AddFieldDataPathValues(const DataPathValue& value) { m_fieldDataPathValuesHasBeenSet = true; m_fieldDataPathValues.push_back(value); return *this; } /** *The data path of the pivot table's header. Used to set the collapse * state.
*/ inline PivotTableFieldCollapseStateTarget& AddFieldDataPathValues(DataPathValue&& value) { m_fieldDataPathValuesHasBeenSet = true; m_fieldDataPathValues.push_back(std::move(value)); return *this; } private: Aws::String m_fieldId; bool m_fieldIdHasBeenSet = false; Aws::Vector