/** * 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 RDS { namespace Model { /** */ class CancelExportTaskRequest : public RDSRequest { public: AWS_RDS_API CancelExportTaskRequest(); // 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 "CancelExportTask"; } AWS_RDS_API Aws::String SerializePayload() const override; protected: AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The identifier of the snapshot or cluster export task to cancel.

*/ inline const Aws::String& GetExportTaskIdentifier() const{ return m_exportTaskIdentifier; } /** *

The identifier of the snapshot or cluster export task to cancel.

*/ inline bool ExportTaskIdentifierHasBeenSet() const { return m_exportTaskIdentifierHasBeenSet; } /** *

The identifier of the snapshot or cluster export task to cancel.

*/ inline void SetExportTaskIdentifier(const Aws::String& value) { m_exportTaskIdentifierHasBeenSet = true; m_exportTaskIdentifier = value; } /** *

The identifier of the snapshot or cluster export task to cancel.

*/ inline void SetExportTaskIdentifier(Aws::String&& value) { m_exportTaskIdentifierHasBeenSet = true; m_exportTaskIdentifier = std::move(value); } /** *

The identifier of the snapshot or cluster export task to cancel.

*/ inline void SetExportTaskIdentifier(const char* value) { m_exportTaskIdentifierHasBeenSet = true; m_exportTaskIdentifier.assign(value); } /** *

The identifier of the snapshot or cluster export task to cancel.

*/ inline CancelExportTaskRequest& WithExportTaskIdentifier(const Aws::String& value) { SetExportTaskIdentifier(value); return *this;} /** *

The identifier of the snapshot or cluster export task to cancel.

*/ inline CancelExportTaskRequest& WithExportTaskIdentifier(Aws::String&& value) { SetExportTaskIdentifier(std::move(value)); return *this;} /** *

The identifier of the snapshot or cluster export task to cancel.

*/ inline CancelExportTaskRequest& WithExportTaskIdentifier(const char* value) { SetExportTaskIdentifier(value); return *this;} private: Aws::String m_exportTaskIdentifier; bool m_exportTaskIdentifierHasBeenSet = false; }; } // namespace Model } // namespace RDS } // namespace Aws