AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeBundleTasksRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/ec2/model/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace EC2
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_EC2_API DescribeBundleTasksRequest() = default;
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 "DescribeBundleTasks"; }
33
34 AWS_EC2_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
45 inline const Aws::Vector<Aws::String>& GetBundleIds() const { return m_bundleIds; }
46 inline bool BundleIdsHasBeenSet() const { return m_bundleIdsHasBeenSet; }
47 template<typename BundleIdsT = Aws::Vector<Aws::String>>
48 void SetBundleIds(BundleIdsT&& value) { m_bundleIdsHasBeenSet = true; m_bundleIds = std::forward<BundleIdsT>(value); }
49 template<typename BundleIdsT = Aws::Vector<Aws::String>>
50 DescribeBundleTasksRequest& WithBundleIds(BundleIdsT&& value) { SetBundleIds(std::forward<BundleIdsT>(value)); return *this;}
51 template<typename BundleIdsT = Aws::String>
52 DescribeBundleTasksRequest& AddBundleIds(BundleIdsT&& value) { m_bundleIdsHasBeenSet = true; m_bundleIds.emplace_back(std::forward<BundleIdsT>(value)); return *this; }
54
56
62 inline bool GetDryRun() const { return m_dryRun; }
63 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
64 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
65 inline DescribeBundleTasksRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
67
69
86 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
87 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
88 template<typename FiltersT = Aws::Vector<Filter>>
89 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
90 template<typename FiltersT = Aws::Vector<Filter>>
91 DescribeBundleTasksRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
92 template<typename FiltersT = Filter>
93 DescribeBundleTasksRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
95 private:
96
97 Aws::Vector<Aws::String> m_bundleIds;
98 bool m_bundleIdsHasBeenSet = false;
99
100 bool m_dryRun{false};
101 bool m_dryRunHasBeenSet = false;
102
103 Aws::Vector<Filter> m_filters;
104 bool m_filtersHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace EC2
109} // namespace Aws
AWS_EC2_API Aws::String SerializePayload() const override
DescribeBundleTasksRequest & WithFilters(FiltersT &&value)
virtual const char * GetServiceRequestName() const override
const Aws::Vector< Filter > & GetFilters() const
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeBundleTasksRequest & WithBundleIds(BundleIdsT &&value)
const Aws::Vector< Aws::String > & GetBundleIds() const
AWS_EC2_API DescribeBundleTasksRequest()=default
DescribeBundleTasksRequest & WithDryRun(bool value)
DescribeBundleTasksRequest & AddBundleIds(BundleIdsT &&value)
DescribeBundleTasksRequest & AddFilters(FiltersT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector