AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetConfigRuleNames(const Aws::Vector<Aws::String>& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames = value; }
50 inline void SetConfigRuleNames(Aws::Vector<Aws::String>&& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames = std::move(value); }
53 inline DescribeConfigRuleEvaluationStatusRequest& AddConfigRuleNames(const Aws::String& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(value); return *this; }
54 inline DescribeConfigRuleEvaluationStatusRequest& AddConfigRuleNames(Aws::String&& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(std::move(value)); return *this; }
55 inline DescribeConfigRuleEvaluationStatusRequest& AddConfigRuleNames(const char* value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(value); return *this; }
57
59
63 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
64 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
65 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
66 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
67 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
69 inline DescribeConfigRuleEvaluationStatusRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
70 inline DescribeConfigRuleEvaluationStatusRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
72
74
82 inline int GetLimit() const{ return m_limit; }
83 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
84 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
85 inline DescribeConfigRuleEvaluationStatusRequest& WithLimit(int value) { SetLimit(value); return *this;}
87 private:
88
89 Aws::Vector<Aws::String> m_configRuleNames;
90 bool m_configRuleNamesHasBeenSet = false;
91
92 Aws::String m_nextToken;
93 bool m_nextTokenHasBeenSet = false;
94
95 int m_limit;
96 bool m_limitHasBeenSet = false;
97 };
98
99} // namespace Model
100} // namespace ConfigService
101} // namespace Aws
AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeConfigRuleEvaluationStatusRequest & WithConfigRuleNames(const Aws::Vector< Aws::String > &value)
DescribeConfigRuleEvaluationStatusRequest & WithConfigRuleNames(Aws::Vector< Aws::String > &&value)
DescribeConfigRuleEvaluationStatusRequest & AddConfigRuleNames(const Aws::String &value)
DescribeConfigRuleEvaluationStatusRequest & WithNextToken(Aws::String &&value)
DescribeConfigRuleEvaluationStatusRequest & WithNextToken(const char *value)
AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override
DescribeConfigRuleEvaluationStatusRequest & AddConfigRuleNames(Aws::String &&value)
DescribeConfigRuleEvaluationStatusRequest & WithNextToken(const Aws::String &value)
DescribeConfigRuleEvaluationStatusRequest & AddConfigRuleNames(const char *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