AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartBatchDeleteConfigurationTaskRequest.h
1
6#pragma once
7#include <aws/discovery/ApplicationDiscoveryService_EXPORTS.h>
8#include <aws/discovery/ApplicationDiscoveryServiceRequest.h>
9#include <aws/discovery/model/DeletionConfigurationItemType.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/core/utils/memory/stl/AWSString.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ApplicationDiscoveryService
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_APPLICATIONDISCOVERYSERVICE_API StartBatchDeleteConfigurationTaskRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "StartBatchDeleteConfigurationTask"; }
33
34 AWS_APPLICATIONDISCOVERYSERVICE_API Aws::String SerializePayload() const override;
35
36 AWS_APPLICATIONDISCOVERYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
37
38
40
43 inline const DeletionConfigurationItemType& GetConfigurationType() const{ return m_configurationType; }
44 inline bool ConfigurationTypeHasBeenSet() const { return m_configurationTypeHasBeenSet; }
45 inline void SetConfigurationType(const DeletionConfigurationItemType& value) { m_configurationTypeHasBeenSet = true; m_configurationType = value; }
46 inline void SetConfigurationType(DeletionConfigurationItemType&& value) { m_configurationTypeHasBeenSet = true; m_configurationType = std::move(value); }
50
52
55 inline const Aws::Vector<Aws::String>& GetConfigurationIds() const{ return m_configurationIds; }
56 inline bool ConfigurationIdsHasBeenSet() const { return m_configurationIdsHasBeenSet; }
57 inline void SetConfigurationIds(const Aws::Vector<Aws::String>& value) { m_configurationIdsHasBeenSet = true; m_configurationIds = value; }
58 inline void SetConfigurationIds(Aws::Vector<Aws::String>&& value) { m_configurationIdsHasBeenSet = true; m_configurationIds = std::move(value); }
61 inline StartBatchDeleteConfigurationTaskRequest& AddConfigurationIds(const Aws::String& value) { m_configurationIdsHasBeenSet = true; m_configurationIds.push_back(value); return *this; }
62 inline StartBatchDeleteConfigurationTaskRequest& AddConfigurationIds(Aws::String&& value) { m_configurationIdsHasBeenSet = true; m_configurationIds.push_back(std::move(value)); return *this; }
63 inline StartBatchDeleteConfigurationTaskRequest& AddConfigurationIds(const char* value) { m_configurationIdsHasBeenSet = true; m_configurationIds.push_back(value); return *this; }
65 private:
66
67 DeletionConfigurationItemType m_configurationType;
68 bool m_configurationTypeHasBeenSet = false;
69
70 Aws::Vector<Aws::String> m_configurationIds;
71 bool m_configurationIdsHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace ApplicationDiscoveryService
76} // namespace Aws
StartBatchDeleteConfigurationTaskRequest & WithConfigurationIds(const Aws::Vector< Aws::String > &value)
StartBatchDeleteConfigurationTaskRequest & AddConfigurationIds(const Aws::String &value)
AWS_APPLICATIONDISCOVERYSERVICE_API Aws::String SerializePayload() const override
StartBatchDeleteConfigurationTaskRequest & WithConfigurationType(DeletionConfigurationItemType &&value)
StartBatchDeleteConfigurationTaskRequest & WithConfigurationIds(Aws::Vector< Aws::String > &&value)
StartBatchDeleteConfigurationTaskRequest & WithConfigurationType(const DeletionConfigurationItemType &value)
AWS_APPLICATIONDISCOVERYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector