/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace FinSpaceData { namespace Model { /** * Response for creating a data view.

See Also:

AWS * API Reference

*/ class CreateDataViewResult { public: AWS_FINSPACEDATA_API CreateDataViewResult(); AWS_FINSPACEDATA_API CreateDataViewResult(const Aws::AmazonWebServiceResult& result); AWS_FINSPACEDATA_API CreateDataViewResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique identifier of the Dataset used for the Dataview.

*/ inline const Aws::String& GetDatasetId() const{ return m_datasetId; } /** *

The unique identifier of the Dataset used for the Dataview.

*/ inline void SetDatasetId(const Aws::String& value) { m_datasetId = value; } /** *

The unique identifier of the Dataset used for the Dataview.

*/ inline void SetDatasetId(Aws::String&& value) { m_datasetId = std::move(value); } /** *

The unique identifier of the Dataset used for the Dataview.

*/ inline void SetDatasetId(const char* value) { m_datasetId.assign(value); } /** *

The unique identifier of the Dataset used for the Dataview.

*/ inline CreateDataViewResult& WithDatasetId(const Aws::String& value) { SetDatasetId(value); return *this;} /** *

The unique identifier of the Dataset used for the Dataview.

*/ inline CreateDataViewResult& WithDatasetId(Aws::String&& value) { SetDatasetId(std::move(value)); return *this;} /** *

The unique identifier of the Dataset used for the Dataview.

*/ inline CreateDataViewResult& WithDatasetId(const char* value) { SetDatasetId(value); return *this;} /** *

The unique identifier for the created Dataview.

*/ inline const Aws::String& GetDataViewId() const{ return m_dataViewId; } /** *

The unique identifier for the created Dataview.

*/ inline void SetDataViewId(const Aws::String& value) { m_dataViewId = value; } /** *

The unique identifier for the created Dataview.

*/ inline void SetDataViewId(Aws::String&& value) { m_dataViewId = std::move(value); } /** *

The unique identifier for the created Dataview.

*/ inline void SetDataViewId(const char* value) { m_dataViewId.assign(value); } /** *

The unique identifier for the created Dataview.

*/ inline CreateDataViewResult& WithDataViewId(const Aws::String& value) { SetDataViewId(value); return *this;} /** *

The unique identifier for the created Dataview.

*/ inline CreateDataViewResult& WithDataViewId(Aws::String&& value) { SetDataViewId(std::move(value)); return *this;} /** *

The unique identifier for the created Dataview.

*/ inline CreateDataViewResult& WithDataViewId(const char* value) { SetDataViewId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateDataViewResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateDataViewResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateDataViewResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_datasetId; Aws::String m_dataViewId; Aws::String m_requestId; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws