/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { class CancelImportTaskResponse { public: AWS_EC2_API CancelImportTaskResponse(); AWS_EC2_API CancelImportTaskResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API CancelImportTaskResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the task being canceled.

*/ inline const Aws::String& GetImportTaskId() const{ return m_importTaskId; } /** *

The ID of the task being canceled.

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

The ID of the task being canceled.

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

The ID of the task being canceled.

*/ inline void SetImportTaskId(const char* value) { m_importTaskId.assign(value); } /** *

The ID of the task being canceled.

*/ inline CancelImportTaskResponse& WithImportTaskId(const Aws::String& value) { SetImportTaskId(value); return *this;} /** *

The ID of the task being canceled.

*/ inline CancelImportTaskResponse& WithImportTaskId(Aws::String&& value) { SetImportTaskId(std::move(value)); return *this;} /** *

The ID of the task being canceled.

*/ inline CancelImportTaskResponse& WithImportTaskId(const char* value) { SetImportTaskId(value); return *this;} /** *

The current state of the task being canceled.

*/ inline const Aws::String& GetPreviousState() const{ return m_previousState; } /** *

The current state of the task being canceled.

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

The current state of the task being canceled.

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

The current state of the task being canceled.

*/ inline void SetPreviousState(const char* value) { m_previousState.assign(value); } /** *

The current state of the task being canceled.

*/ inline CancelImportTaskResponse& WithPreviousState(const Aws::String& value) { SetPreviousState(value); return *this;} /** *

The current state of the task being canceled.

*/ inline CancelImportTaskResponse& WithPreviousState(Aws::String&& value) { SetPreviousState(std::move(value)); return *this;} /** *

The current state of the task being canceled.

*/ inline CancelImportTaskResponse& WithPreviousState(const char* value) { SetPreviousState(value); return *this;} /** *

The current state of the task being canceled.

*/ inline const Aws::String& GetState() const{ return m_state; } /** *

The current state of the task being canceled.

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

The current state of the task being canceled.

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

The current state of the task being canceled.

*/ inline void SetState(const char* value) { m_state.assign(value); } /** *

The current state of the task being canceled.

*/ inline CancelImportTaskResponse& WithState(const Aws::String& value) { SetState(value); return *this;} /** *

The current state of the task being canceled.

*/ inline CancelImportTaskResponse& WithState(Aws::String&& value) { SetState(std::move(value)); return *this;} /** *

The current state of the task being canceled.

*/ inline CancelImportTaskResponse& WithState(const char* value) { SetState(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline CancelImportTaskResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CancelImportTaskResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_importTaskId; Aws::String m_previousState; Aws::String m_state; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws