AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListEnabledBaselinesRequest.h
1
6#pragma once
7#include <aws/controltower/ControlTower_EXPORTS.h>
8#include <aws/controltower/ControlTowerRequest.h>
9#include <aws/controltower/model/EnabledBaselineFilter.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ControlTower
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CONTROLTOWER_API ListEnabledBaselinesRequest() = default;
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 "ListEnabledBaselines"; }
32
33 AWS_CONTROLTOWER_API Aws::String SerializePayload() const override;
34
35
37
42 inline const EnabledBaselineFilter& GetFilter() const { return m_filter; }
43 inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; }
44 template<typename FilterT = EnabledBaselineFilter>
45 void SetFilter(FilterT&& value) { m_filterHasBeenSet = true; m_filter = std::forward<FilterT>(value); }
46 template<typename FilterT = EnabledBaselineFilter>
47 ListEnabledBaselinesRequest& WithFilter(FilterT&& value) { SetFilter(std::forward<FilterT>(value)); return *this;}
49
51
55 inline bool GetIncludeChildren() const { return m_includeChildren; }
56 inline bool IncludeChildrenHasBeenSet() const { return m_includeChildrenHasBeenSet; }
57 inline void SetIncludeChildren(bool value) { m_includeChildrenHasBeenSet = true; m_includeChildren = value; }
58 inline ListEnabledBaselinesRequest& WithIncludeChildren(bool value) { SetIncludeChildren(value); return *this;}
60
62
65 inline int GetMaxResults() const { return m_maxResults; }
66 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
67 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
68 inline ListEnabledBaselinesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
70
72
75 inline const Aws::String& GetNextToken() const { return m_nextToken; }
76 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
77 template<typename NextTokenT = Aws::String>
78 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
79 template<typename NextTokenT = Aws::String>
80 ListEnabledBaselinesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
82 private:
83
84 EnabledBaselineFilter m_filter;
85 bool m_filterHasBeenSet = false;
86
87 bool m_includeChildren{false};
88 bool m_includeChildrenHasBeenSet = false;
89
90 int m_maxResults{0};
91 bool m_maxResultsHasBeenSet = false;
92
93 Aws::String m_nextToken;
94 bool m_nextTokenHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace ControlTower
99} // namespace Aws
ListEnabledBaselinesRequest & WithNextToken(NextTokenT &&value)
ListEnabledBaselinesRequest & WithFilter(FilterT &&value)
AWS_CONTROLTOWER_API ListEnabledBaselinesRequest()=default
AWS_CONTROLTOWER_API Aws::String SerializePayload() const override
ListEnabledBaselinesRequest & WithIncludeChildren(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String