/** * 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 CreateChangeset operation.

See Also:

AWS * API Reference

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

The unique identifier of the Changeset that is created.

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

The unique identifier of the Changeset that is created.

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

The unique identifier of the Changeset that is created.

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

The unique identifier of the Changeset that is created.

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

The unique identifier of the Changeset that is created.

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

The unique identifier of the Changeset that is created.

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

The unique identifier of the Changeset that is created.

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