/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The unique identifier for the Dataview.
*/ inline const Aws::String& GetDataViewId() const{ return m_dataViewId; } /** *The unique identifier for the Dataview.
*/ inline bool DataViewIdHasBeenSet() const { return m_dataViewIdHasBeenSet; } /** *The unique identifier for the Dataview.
*/ inline void SetDataViewId(const Aws::String& value) { m_dataViewIdHasBeenSet = true; m_dataViewId = value; } /** *The unique identifier for the Dataview.
*/ inline void SetDataViewId(Aws::String&& value) { m_dataViewIdHasBeenSet = true; m_dataViewId = std::move(value); } /** *The unique identifier for the Dataview.
*/ inline void SetDataViewId(const char* value) { m_dataViewIdHasBeenSet = true; m_dataViewId.assign(value); } /** *The unique identifier for the Dataview.
*/ inline GetDataViewRequest& WithDataViewId(const Aws::String& value) { SetDataViewId(value); return *this;} /** *The unique identifier for the Dataview.
*/ inline GetDataViewRequest& WithDataViewId(Aws::String&& value) { SetDataViewId(std::move(value)); return *this;} /** *The unique identifier for the Dataview.
*/ inline GetDataViewRequest& WithDataViewId(const char* value) { SetDataViewId(value); return *this;} /** *The unique identifier for the Dataset used in the Dataview.
*/ inline const Aws::String& GetDatasetId() const{ return m_datasetId; } /** *The unique identifier for the Dataset used in the Dataview.
*/ inline bool DatasetIdHasBeenSet() const { return m_datasetIdHasBeenSet; } /** *The unique identifier for the Dataset used in the Dataview.
*/ inline void SetDatasetId(const Aws::String& value) { m_datasetIdHasBeenSet = true; m_datasetId = value; } /** *The unique identifier for the Dataset used in the Dataview.
*/ inline void SetDatasetId(Aws::String&& value) { m_datasetIdHasBeenSet = true; m_datasetId = std::move(value); } /** *The unique identifier for the Dataset used in the Dataview.
*/ inline void SetDatasetId(const char* value) { m_datasetIdHasBeenSet = true; m_datasetId.assign(value); } /** *The unique identifier for the Dataset used in the Dataview.
*/ inline GetDataViewRequest& WithDatasetId(const Aws::String& value) { SetDatasetId(value); return *this;} /** *The unique identifier for the Dataset used in the Dataview.
*/ inline GetDataViewRequest& WithDatasetId(Aws::String&& value) { SetDatasetId(std::move(value)); return *this;} /** *The unique identifier for the Dataset used in the Dataview.
*/ inline GetDataViewRequest& WithDatasetId(const char* value) { SetDatasetId(value); return *this;} private: Aws::String m_dataViewId; bool m_dataViewIdHasBeenSet = false; Aws::String m_datasetId; bool m_datasetIdHasBeenSet = false; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws