/** * 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 MainframeModernization { namespace Model { class StartBatchJobResult { public: AWS_MAINFRAMEMODERNIZATION_API StartBatchJobResult(); AWS_MAINFRAMEMODERNIZATION_API StartBatchJobResult(const Aws::AmazonWebServiceResult& result); AWS_MAINFRAMEMODERNIZATION_API StartBatchJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique identifier of this execution of the batch job.

*/ inline const Aws::String& GetExecutionId() const{ return m_executionId; } /** *

The unique identifier of this execution of the batch job.

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

The unique identifier of this execution of the batch job.

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

The unique identifier of this execution of the batch job.

*/ inline void SetExecutionId(const char* value) { m_executionId.assign(value); } /** *

The unique identifier of this execution of the batch job.

*/ inline StartBatchJobResult& WithExecutionId(const Aws::String& value) { SetExecutionId(value); return *this;} /** *

The unique identifier of this execution of the batch job.

*/ inline StartBatchJobResult& WithExecutionId(Aws::String&& value) { SetExecutionId(std::move(value)); return *this;} /** *

The unique identifier of this execution of the batch job.

*/ inline StartBatchJobResult& WithExecutionId(const char* value) { SetExecutionId(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 StartBatchJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartBatchJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartBatchJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_executionId; Aws::String m_requestId; }; } // namespace Model } // namespace MainframeModernization } // namespace Aws