AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeFlowLogsRequest.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:
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 "DescribeFlowLogs"; }
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
48 inline bool GetDryRun() const{ return m_dryRun; }
49 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
50 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
51 inline DescribeFlowLogsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
53
55
75 inline const Aws::Vector<Filter>& GetFilter() const{ return m_filter; }
76 inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; }
77 inline void SetFilter(const Aws::Vector<Filter>& value) { m_filterHasBeenSet = true; m_filter = value; }
78 inline void SetFilter(Aws::Vector<Filter>&& value) { m_filterHasBeenSet = true; m_filter = std::move(value); }
79 inline DescribeFlowLogsRequest& WithFilter(const Aws::Vector<Filter>& value) { SetFilter(value); return *this;}
80 inline DescribeFlowLogsRequest& WithFilter(Aws::Vector<Filter>&& value) { SetFilter(std::move(value)); return *this;}
81 inline DescribeFlowLogsRequest& AddFilter(const Filter& value) { m_filterHasBeenSet = true; m_filter.push_back(value); return *this; }
82 inline DescribeFlowLogsRequest& AddFilter(Filter&& value) { m_filterHasBeenSet = true; m_filter.push_back(std::move(value)); return *this; }
84
86
90 inline const Aws::Vector<Aws::String>& GetFlowLogIds() const{ return m_flowLogIds; }
91 inline bool FlowLogIdsHasBeenSet() const { return m_flowLogIdsHasBeenSet; }
92 inline void SetFlowLogIds(const Aws::Vector<Aws::String>& value) { m_flowLogIdsHasBeenSet = true; m_flowLogIds = value; }
93 inline void SetFlowLogIds(Aws::Vector<Aws::String>&& value) { m_flowLogIdsHasBeenSet = true; m_flowLogIds = std::move(value); }
95 inline DescribeFlowLogsRequest& WithFlowLogIds(Aws::Vector<Aws::String>&& value) { SetFlowLogIds(std::move(value)); return *this;}
96 inline DescribeFlowLogsRequest& AddFlowLogIds(const Aws::String& value) { m_flowLogIdsHasBeenSet = true; m_flowLogIds.push_back(value); return *this; }
97 inline DescribeFlowLogsRequest& AddFlowLogIds(Aws::String&& value) { m_flowLogIdsHasBeenSet = true; m_flowLogIds.push_back(std::move(value)); return *this; }
98 inline DescribeFlowLogsRequest& AddFlowLogIds(const char* value) { m_flowLogIdsHasBeenSet = true; m_flowLogIds.push_back(value); return *this; }
100
102
108 inline int GetMaxResults() const{ return m_maxResults; }
109 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
110 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
111 inline DescribeFlowLogsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
113
115
119 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
120 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
121 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
122 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
123 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
124 inline DescribeFlowLogsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
125 inline DescribeFlowLogsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
126 inline DescribeFlowLogsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
128 private:
129
130 bool m_dryRun;
131 bool m_dryRunHasBeenSet = false;
132
133 Aws::Vector<Filter> m_filter;
134 bool m_filterHasBeenSet = false;
135
136 Aws::Vector<Aws::String> m_flowLogIds;
137 bool m_flowLogIdsHasBeenSet = false;
138
139 int m_maxResults;
140 bool m_maxResultsHasBeenSet = false;
141
142 Aws::String m_nextToken;
143 bool m_nextTokenHasBeenSet = false;
144 };
145
146} // namespace Model
147} // namespace EC2
148} // namespace Aws
void SetFilter(Aws::Vector< Filter > &&value)
AWS_EC2_API Aws::String SerializePayload() const override
void SetFlowLogIds(Aws::Vector< Aws::String > &&value)
DescribeFlowLogsRequest & WithNextToken(const Aws::String &value)
DescribeFlowLogsRequest & WithDryRun(bool value)
DescribeFlowLogsRequest & WithFilter(Aws::Vector< Filter > &&value)
DescribeFlowLogsRequest & AddFilter(Filter &&value)
const Aws::Vector< Aws::String > & GetFlowLogIds() const
DescribeFlowLogsRequest & WithFilter(const Aws::Vector< Filter > &value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeFlowLogsRequest & AddFlowLogIds(const Aws::String &value)
void SetFlowLogIds(const Aws::Vector< Aws::String > &value)
DescribeFlowLogsRequest & AddFlowLogIds(Aws::String &&value)
DescribeFlowLogsRequest & WithFlowLogIds(const Aws::Vector< Aws::String > &value)
DescribeFlowLogsRequest & WithNextToken(const char *value)
virtual const char * GetServiceRequestName() const override
DescribeFlowLogsRequest & WithFlowLogIds(Aws::Vector< Aws::String > &&value)
DescribeFlowLogsRequest & AddFilter(const Filter &value)
const Aws::Vector< Filter > & GetFilter() const
DescribeFlowLogsRequest & WithNextToken(Aws::String &&value)
DescribeFlowLogsRequest & AddFlowLogIds(const char *value)
void SetFilter(const Aws::Vector< Filter > &value)
DescribeFlowLogsRequest & WithMaxResults(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector