/** * 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 DeleteApplicationsRequest : public ApplicationDiscoveryServiceRequest { public: AWS_APPLICATIONDISCOVERYSERVICE_API DeleteApplicationsRequest(); // 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 "DeleteApplications"; } AWS_APPLICATIONDISCOVERYSERVICE_API Aws::String SerializePayload() const override; AWS_APPLICATIONDISCOVERYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

Configuration ID of an application to be deleted.

*/ inline const Aws::Vector& GetConfigurationIds() const{ return m_configurationIds; } /** *

Configuration ID of an application to be deleted.

*/ inline bool ConfigurationIdsHasBeenSet() const { return m_configurationIdsHasBeenSet; } /** *

Configuration ID of an application to be deleted.

*/ inline void SetConfigurationIds(const Aws::Vector& value) { m_configurationIdsHasBeenSet = true; m_configurationIds = value; } /** *

Configuration ID of an application to be deleted.

*/ inline void SetConfigurationIds(Aws::Vector&& value) { m_configurationIdsHasBeenSet = true; m_configurationIds = std::move(value); } /** *

Configuration ID of an application to be deleted.

*/ inline DeleteApplicationsRequest& WithConfigurationIds(const Aws::Vector& value) { SetConfigurationIds(value); return *this;} /** *

Configuration ID of an application to be deleted.

*/ inline DeleteApplicationsRequest& WithConfigurationIds(Aws::Vector&& value) { SetConfigurationIds(std::move(value)); return *this;} /** *

Configuration ID of an application to be deleted.

*/ inline DeleteApplicationsRequest& AddConfigurationIds(const Aws::String& value) { m_configurationIdsHasBeenSet = true; m_configurationIds.push_back(value); return *this; } /** *

Configuration ID of an application to be deleted.

*/ inline DeleteApplicationsRequest& AddConfigurationIds(Aws::String&& value) { m_configurationIdsHasBeenSet = true; m_configurationIds.push_back(std::move(value)); return *this; } /** *

Configuration ID of an application to be deleted.

*/ inline DeleteApplicationsRequest& AddConfigurationIds(const char* value) { m_configurationIdsHasBeenSet = true; m_configurationIds.push_back(value); return *this; } private: Aws::Vector m_configurationIds; bool m_configurationIdsHasBeenSet = false; }; } // namespace Model } // namespace ApplicationDiscoveryService } // namespace Aws