AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeConformancePackComplianceRequest.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/AWSString.h>
10#include <aws/config/model/ConformancePackComplianceFilters.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ConfigService
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribeConformancePackCompliance"; }
32
33 AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override;
34
35 AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
42 inline const Aws::String& GetConformancePackName() const{ return m_conformancePackName; }
43 inline bool ConformancePackNameHasBeenSet() const { return m_conformancePackNameHasBeenSet; }
44 inline void SetConformancePackName(const Aws::String& value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName = value; }
45 inline void SetConformancePackName(Aws::String&& value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName = std::move(value); }
46 inline void SetConformancePackName(const char* value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName.assign(value); }
51
53
56 inline const ConformancePackComplianceFilters& GetFilters() const{ return m_filters; }
57 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
58 inline void SetFilters(const ConformancePackComplianceFilters& value) { m_filtersHasBeenSet = true; m_filters = value; }
59 inline void SetFilters(ConformancePackComplianceFilters&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
63
65
69 inline int GetLimit() const{ return m_limit; }
70 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
71 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
72 inline DescribeConformancePackComplianceRequest& WithLimit(int value) { SetLimit(value); return *this;}
74
76
80 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
81 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
82 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
83 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
84 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
86 inline DescribeConformancePackComplianceRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
87 inline DescribeConformancePackComplianceRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
89 private:
90
91 Aws::String m_conformancePackName;
92 bool m_conformancePackNameHasBeenSet = false;
93
95 bool m_filtersHasBeenSet = false;
96
97 int m_limit;
98 bool m_limitHasBeenSet = false;
99
100 Aws::String m_nextToken;
101 bool m_nextTokenHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace ConfigService
106} // namespace Aws
AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override
DescribeConformancePackComplianceRequest & WithConformancePackName(const Aws::String &value)
DescribeConformancePackComplianceRequest & WithNextToken(const Aws::String &value)
AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeConformancePackComplianceRequest & WithConformancePackName(const char *value)
DescribeConformancePackComplianceRequest & WithNextToken(Aws::String &&value)
DescribeConformancePackComplianceRequest & WithFilters(ConformancePackComplianceFilters &&value)
DescribeConformancePackComplianceRequest & WithConformancePackName(Aws::String &&value)
DescribeConformancePackComplianceRequest & WithFilters(const ConformancePackComplianceFilters &value)
DescribeConformancePackComplianceRequest & WithNextToken(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String