/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** */ class CancelImportTaskRequest : public EC2Request { public: AWS_EC2_API CancelImportTaskRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CancelImportTask"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The reason for canceling the task.

*/ inline const Aws::String& GetCancelReason() const{ return m_cancelReason; } /** *

The reason for canceling the task.

*/ inline bool CancelReasonHasBeenSet() const { return m_cancelReasonHasBeenSet; } /** *

The reason for canceling the task.

*/ inline void SetCancelReason(const Aws::String& value) { m_cancelReasonHasBeenSet = true; m_cancelReason = value; } /** *

The reason for canceling the task.

*/ inline void SetCancelReason(Aws::String&& value) { m_cancelReasonHasBeenSet = true; m_cancelReason = std::move(value); } /** *

The reason for canceling the task.

*/ inline void SetCancelReason(const char* value) { m_cancelReasonHasBeenSet = true; m_cancelReason.assign(value); } /** *

The reason for canceling the task.

*/ inline CancelImportTaskRequest& WithCancelReason(const Aws::String& value) { SetCancelReason(value); return *this;} /** *

The reason for canceling the task.

*/ inline CancelImportTaskRequest& WithCancelReason(Aws::String&& value) { SetCancelReason(std::move(value)); return *this;} /** *

The reason for canceling the task.

*/ inline CancelImportTaskRequest& WithCancelReason(const char* value) { SetCancelReason(value); return *this;} /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline CancelImportTaskRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** *

The ID of the import image or import snapshot task to be canceled.

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

The ID of the import image or import snapshot task to be canceled.

*/ inline bool ImportTaskIdHasBeenSet() const { return m_importTaskIdHasBeenSet; } /** *

The ID of the import image or import snapshot task to be canceled.

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

The ID of the import image or import snapshot task to be canceled.

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

The ID of the import image or import snapshot task to be canceled.

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

The ID of the import image or import snapshot task to be canceled.

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

The ID of the import image or import snapshot task to be canceled.

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

The ID of the import image or import snapshot task to be canceled.

*/ inline CancelImportTaskRequest& WithImportTaskId(const char* value) { SetImportTaskId(value); return *this;} private: Aws::String m_cancelReason; bool m_cancelReasonHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; Aws::String m_importTaskId; bool m_importTaskIdHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws