/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ApplicationDiscoveryService { namespace Model { /** */ class BatchDeleteImportDataRequest : public ApplicationDiscoveryServiceRequest { public: AWS_APPLICATIONDISCOVERYSERVICE_API BatchDeleteImportDataRequest(); // 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 "BatchDeleteImportData"; } AWS_APPLICATIONDISCOVERYSERVICE_API Aws::String SerializePayload() const override; AWS_APPLICATIONDISCOVERYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The IDs for the import tasks that you want to delete.

*/ inline const Aws::Vector& GetImportTaskIds() const{ return m_importTaskIds; } /** *

The IDs for the import tasks that you want to delete.

*/ inline bool ImportTaskIdsHasBeenSet() const { return m_importTaskIdsHasBeenSet; } /** *

The IDs for the import tasks that you want to delete.

*/ inline void SetImportTaskIds(const Aws::Vector& value) { m_importTaskIdsHasBeenSet = true; m_importTaskIds = value; } /** *

The IDs for the import tasks that you want to delete.

*/ inline void SetImportTaskIds(Aws::Vector&& value) { m_importTaskIdsHasBeenSet = true; m_importTaskIds = std::move(value); } /** *

The IDs for the import tasks that you want to delete.

*/ inline BatchDeleteImportDataRequest& WithImportTaskIds(const Aws::Vector& value) { SetImportTaskIds(value); return *this;} /** *

The IDs for the import tasks that you want to delete.

*/ inline BatchDeleteImportDataRequest& WithImportTaskIds(Aws::Vector&& value) { SetImportTaskIds(std::move(value)); return *this;} /** *

The IDs for the import tasks that you want to delete.

*/ inline BatchDeleteImportDataRequest& AddImportTaskIds(const Aws::String& value) { m_importTaskIdsHasBeenSet = true; m_importTaskIds.push_back(value); return *this; } /** *

The IDs for the import tasks that you want to delete.

*/ inline BatchDeleteImportDataRequest& AddImportTaskIds(Aws::String&& value) { m_importTaskIdsHasBeenSet = true; m_importTaskIds.push_back(std::move(value)); return *this; } /** *

The IDs for the import tasks that you want to delete.

*/ inline BatchDeleteImportDataRequest& AddImportTaskIds(const char* value) { m_importTaskIdsHasBeenSet = true; m_importTaskIds.push_back(value); return *this; } private: Aws::Vector m_importTaskIds; bool m_importTaskIdsHasBeenSet = false; }; } // namespace Model } // namespace ApplicationDiscoveryService } // namespace Aws