/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A data set.See Also:
AWS
* API Reference
The identifier of the data set, typically the data set's name.
*/ inline const Aws::String& GetIdentifier() const{ return m_identifier; } /** *The identifier of the data set, typically the data set's name.
*/ inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; } /** *The identifier of the data set, typically the data set's name.
*/ inline void SetIdentifier(const Aws::String& value) { m_identifierHasBeenSet = true; m_identifier = value; } /** *The identifier of the data set, typically the data set's name.
*/ inline void SetIdentifier(Aws::String&& value) { m_identifierHasBeenSet = true; m_identifier = std::move(value); } /** *The identifier of the data set, typically the data set's name.
*/ inline void SetIdentifier(const char* value) { m_identifierHasBeenSet = true; m_identifier.assign(value); } /** *The identifier of the data set, typically the data set's name.
*/ inline DataSetIdentifierDeclaration& WithIdentifier(const Aws::String& value) { SetIdentifier(value); return *this;} /** *The identifier of the data set, typically the data set's name.
*/ inline DataSetIdentifierDeclaration& WithIdentifier(Aws::String&& value) { SetIdentifier(std::move(value)); return *this;} /** *The identifier of the data set, typically the data set's name.
*/ inline DataSetIdentifierDeclaration& WithIdentifier(const char* value) { SetIdentifier(value); return *this;} /** *The Amazon Resource Name (ARN) of the data set.
*/ inline const Aws::String& GetDataSetArn() const{ return m_dataSetArn; } /** *The Amazon Resource Name (ARN) of the data set.
*/ inline bool DataSetArnHasBeenSet() const { return m_dataSetArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the data set.
*/ inline void SetDataSetArn(const Aws::String& value) { m_dataSetArnHasBeenSet = true; m_dataSetArn = value; } /** *The Amazon Resource Name (ARN) of the data set.
*/ inline void SetDataSetArn(Aws::String&& value) { m_dataSetArnHasBeenSet = true; m_dataSetArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the data set.
*/ inline void SetDataSetArn(const char* value) { m_dataSetArnHasBeenSet = true; m_dataSetArn.assign(value); } /** *The Amazon Resource Name (ARN) of the data set.
*/ inline DataSetIdentifierDeclaration& WithDataSetArn(const Aws::String& value) { SetDataSetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the data set.
*/ inline DataSetIdentifierDeclaration& WithDataSetArn(Aws::String&& value) { SetDataSetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the data set.
*/ inline DataSetIdentifierDeclaration& WithDataSetArn(const char* value) { SetDataSetArn(value); return *this;} private: Aws::String m_identifier; bool m_identifierHasBeenSet = false; Aws::String m_dataSetArn; bool m_dataSetArnHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws