/** * 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 { /** *

A data set.

See Also:

AWS * API Reference

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

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