/** * 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 { /** * The response from a update changeset operation.

See Also:

AWS * API Reference

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

The unique identifier for the Changeset to update.

*/ inline const Aws::String& GetChangesetId() const{ return m_changesetId; } /** *

The unique identifier for the Changeset to update.

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

The unique identifier for the Changeset to update.

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

The unique identifier for the Changeset to update.

*/ inline void SetChangesetId(const char* value) { m_changesetId.assign(value); } /** *

The unique identifier for the Changeset to update.

*/ inline UpdateChangesetResult& WithChangesetId(const Aws::String& value) { SetChangesetId(value); return *this;} /** *

The unique identifier for the Changeset to update.

*/ inline UpdateChangesetResult& WithChangesetId(Aws::String&& value) { SetChangesetId(std::move(value)); return *this;} /** *

The unique identifier for the Changeset to update.

*/ inline UpdateChangesetResult& WithChangesetId(const char* value) { SetChangesetId(value); return *this;} /** *

The unique identifier for the FinSpace Dataset in which the Changeset is * created.

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

The unique identifier for the FinSpace Dataset in which the Changeset is * created.

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

The unique identifier for the FinSpace Dataset in which the Changeset is * created.

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

The unique identifier for the FinSpace Dataset in which the Changeset is * created.

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

The unique identifier for the FinSpace Dataset in which the Changeset is * created.

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

The unique identifier for the FinSpace Dataset in which the Changeset is * created.

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

The unique identifier for the FinSpace Dataset in which the Changeset is * created.

*/ inline UpdateChangesetResult& WithDatasetId(const char* value) { SetDatasetId(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 UpdateChangesetResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateChangesetResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateChangesetResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_changesetId; Aws::String m_datasetId; Aws::String m_requestId; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws