/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A dataset parameter that is mapped to an analysis parameter.See
* Also:
AWS
* API Reference
A unique name that identifies a dataset within the analysis or dashboard.
*/ inline const Aws::String& GetDataSetIdentifier() const{ return m_dataSetIdentifier; } /** *A unique name that identifies a dataset within the analysis or dashboard.
*/ inline bool DataSetIdentifierHasBeenSet() const { return m_dataSetIdentifierHasBeenSet; } /** *A unique name that identifies a dataset within the analysis or dashboard.
*/ inline void SetDataSetIdentifier(const Aws::String& value) { m_dataSetIdentifierHasBeenSet = true; m_dataSetIdentifier = value; } /** *A unique name that identifies a dataset within the analysis or dashboard.
*/ inline void SetDataSetIdentifier(Aws::String&& value) { m_dataSetIdentifierHasBeenSet = true; m_dataSetIdentifier = std::move(value); } /** *A unique name that identifies a dataset within the analysis or dashboard.
*/ inline void SetDataSetIdentifier(const char* value) { m_dataSetIdentifierHasBeenSet = true; m_dataSetIdentifier.assign(value); } /** *A unique name that identifies a dataset within the analysis or dashboard.
*/ inline MappedDataSetParameter& WithDataSetIdentifier(const Aws::String& value) { SetDataSetIdentifier(value); return *this;} /** *A unique name that identifies a dataset within the analysis or dashboard.
*/ inline MappedDataSetParameter& WithDataSetIdentifier(Aws::String&& value) { SetDataSetIdentifier(std::move(value)); return *this;} /** *A unique name that identifies a dataset within the analysis or dashboard.
*/ inline MappedDataSetParameter& WithDataSetIdentifier(const char* value) { SetDataSetIdentifier(value); return *this;} /** *The name of the dataset parameter.
*/ inline const Aws::String& GetDataSetParameterName() const{ return m_dataSetParameterName; } /** *The name of the dataset parameter.
*/ inline bool DataSetParameterNameHasBeenSet() const { return m_dataSetParameterNameHasBeenSet; } /** *The name of the dataset parameter.
*/ inline void SetDataSetParameterName(const Aws::String& value) { m_dataSetParameterNameHasBeenSet = true; m_dataSetParameterName = value; } /** *The name of the dataset parameter.
*/ inline void SetDataSetParameterName(Aws::String&& value) { m_dataSetParameterNameHasBeenSet = true; m_dataSetParameterName = std::move(value); } /** *The name of the dataset parameter.
*/ inline void SetDataSetParameterName(const char* value) { m_dataSetParameterNameHasBeenSet = true; m_dataSetParameterName.assign(value); } /** *The name of the dataset parameter.
*/ inline MappedDataSetParameter& WithDataSetParameterName(const Aws::String& value) { SetDataSetParameterName(value); return *this;} /** *The name of the dataset parameter.
*/ inline MappedDataSetParameter& WithDataSetParameterName(Aws::String&& value) { SetDataSetParameterName(std::move(value)); return *this;} /** *The name of the dataset parameter.
*/ inline MappedDataSetParameter& WithDataSetParameterName(const char* value) { SetDataSetParameterName(value); return *this;} private: Aws::String m_dataSetIdentifier; bool m_dataSetIdentifierHasBeenSet = false; Aws::String m_dataSetParameterName; bool m_dataSetParameterNameHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws