AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeConfigRuleEvaluationStatusRequest.h
1
6#pragma once
7#include <aws/config/ConfigService_EXPORTS.h>
8#include <aws/config/ConfigServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ConfigService
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_CONFIGSERVICE_API DescribeConfigRuleEvaluationStatusRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DescribeConfigRuleEvaluationStatus"; }
35
36 AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override;
37
38 AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
39
40
42
47 inline const Aws::Vector<Aws::String>& GetConfigRuleNames() const { return m_configRuleNames; }
48 inline bool ConfigRuleNamesHasBeenSet() const { return m_configRuleNamesHasBeenSet; }
49 template<typename ConfigRuleNamesT = Aws::Vector<Aws::String>>
50 void SetConfigRuleNames(ConfigRuleNamesT&& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames = std::forward<ConfigRuleNamesT>(value); }
51 template<typename ConfigRuleNamesT = Aws::Vector<Aws::String>>
52 DescribeConfigRuleEvaluationStatusRequest& WithConfigRuleNames(ConfigRuleNamesT&& value) { SetConfigRuleNames(std::forward<ConfigRuleNamesT>(value)); return *this;}
53 template<typename ConfigRuleNamesT = Aws::String>
54 DescribeConfigRuleEvaluationStatusRequest& AddConfigRuleNames(ConfigRuleNamesT&& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.emplace_back(std::forward<ConfigRuleNamesT>(value)); return *this; }
56
58
62 inline const Aws::String& GetNextToken() const { return m_nextToken; }
63 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
64 template<typename NextTokenT = Aws::String>
65 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
66 template<typename NextTokenT = Aws::String>
67 DescribeConfigRuleEvaluationStatusRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
69
71
79 inline int GetLimit() const { return m_limit; }
80 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
81 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
82 inline DescribeConfigRuleEvaluationStatusRequest& WithLimit(int value) { SetLimit(value); return *this;}
84 private:
85
86 Aws::Vector<Aws::String> m_configRuleNames;
87 bool m_configRuleNamesHasBeenSet = false;
88
89 Aws::String m_nextToken;
90 bool m_nextTokenHasBeenSet = false;
91
92 int m_limit{0};
93 bool m_limitHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace ConfigService
98} // namespace Aws
AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeConfigRuleEvaluationStatusRequest & WithNextToken(NextTokenT &&value)
DescribeConfigRuleEvaluationStatusRequest & AddConfigRuleNames(ConfigRuleNamesT &&value)
AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override
DescribeConfigRuleEvaluationStatusRequest & WithConfigRuleNames(ConfigRuleNamesT &&value)
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