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

The unique identifier of the notebook execution.

*/ inline const Aws::String& GetNotebookExecutionId() const{ return m_notebookExecutionId; } /** *

The unique identifier of the notebook execution.

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

The unique identifier of the notebook execution.

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

The unique identifier of the notebook execution.

*/ inline void SetNotebookExecutionId(const char* value) { m_notebookExecutionId.assign(value); } /** *

The unique identifier of the notebook execution.

*/ inline StartNotebookExecutionResult& WithNotebookExecutionId(const Aws::String& value) { SetNotebookExecutionId(value); return *this;} /** *

The unique identifier of the notebook execution.

*/ inline StartNotebookExecutionResult& WithNotebookExecutionId(Aws::String&& value) { SetNotebookExecutionId(std::move(value)); return *this;} /** *

The unique identifier of the notebook execution.

*/ inline StartNotebookExecutionResult& WithNotebookExecutionId(const char* value) { SetNotebookExecutionId(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 StartNotebookExecutionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartNotebookExecutionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartNotebookExecutionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_notebookExecutionId; Aws::String m_requestId; }; } // namespace Model } // namespace EMR } // namespace Aws