AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListLaunchActionsRequest.h
1
6#pragma once
7#include <aws/drs/Drs_EXPORTS.h>
8#include <aws/drs/DrsRequest.h>
9#include <aws/drs/model/LaunchActionsRequestFilters.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace drs
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_DRS_API ListLaunchActionsRequest() = 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 "ListLaunchActions"; }
32
33 AWS_DRS_API Aws::String SerializePayload() const override;
34
35
37
40 inline const LaunchActionsRequestFilters& GetFilters() const { return m_filters; }
41 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
42 template<typename FiltersT = LaunchActionsRequestFilters>
43 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
44 template<typename FiltersT = LaunchActionsRequestFilters>
45 ListLaunchActionsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
47
49
52 inline int GetMaxResults() const { return m_maxResults; }
53 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
54 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
55 inline ListLaunchActionsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
57
59
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 ListLaunchActionsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
69
71
72 inline const Aws::String& GetResourceId() const { return m_resourceId; }
73 inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; }
74 template<typename ResourceIdT = Aws::String>
75 void SetResourceId(ResourceIdT&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::forward<ResourceIdT>(value); }
76 template<typename ResourceIdT = Aws::String>
77 ListLaunchActionsRequest& WithResourceId(ResourceIdT&& value) { SetResourceId(std::forward<ResourceIdT>(value)); return *this;}
79 private:
80
82 bool m_filtersHasBeenSet = false;
83
84 int m_maxResults{0};
85 bool m_maxResultsHasBeenSet = false;
86
87 Aws::String m_nextToken;
88 bool m_nextTokenHasBeenSet = false;
89
90 Aws::String m_resourceId;
91 bool m_resourceIdHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace drs
96} // namespace Aws
const LaunchActionsRequestFilters & GetFilters() const
ListLaunchActionsRequest & WithResourceId(ResourceIdT &&value)
ListLaunchActionsRequest & WithFilters(FiltersT &&value)
ListLaunchActionsRequest & WithNextToken(NextTokenT &&value)
ListLaunchActionsRequest & WithMaxResults(int value)
AWS_DRS_API Aws::String SerializePayload() const override
AWS_DRS_API ListLaunchActionsRequest()=default
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String