AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListDeploymentsRequest.h
1
6#pragma once
7#include <aws/launch-wizard/LaunchWizard_EXPORTS.h>
8#include <aws/launch-wizard/LaunchWizardRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/launch-wizard/model/DeploymentFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace LaunchWizard
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_LAUNCHWIZARD_API ListDeploymentsRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "ListDeployments"; }
33
34 AWS_LAUNCHWIZARD_API Aws::String SerializePayload() const override;
35
36
38
47 inline const Aws::Vector<DeploymentFilter>& GetFilters() const{ return m_filters; }
48 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
49 inline void SetFilters(const Aws::Vector<DeploymentFilter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
50 inline void SetFilters(Aws::Vector<DeploymentFilter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
51 inline ListDeploymentsRequest& WithFilters(const Aws::Vector<DeploymentFilter>& value) { SetFilters(value); return *this;}
52 inline ListDeploymentsRequest& WithFilters(Aws::Vector<DeploymentFilter>&& value) { SetFilters(std::move(value)); return *this;}
53 inline ListDeploymentsRequest& AddFilters(const DeploymentFilter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
54 inline ListDeploymentsRequest& AddFilters(DeploymentFilter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
56
58
62 inline int GetMaxResults() const{ return m_maxResults; }
63 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
64 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
65 inline ListDeploymentsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
67
69
73 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
74 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
75 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
76 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
77 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
78 inline ListDeploymentsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
79 inline ListDeploymentsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
80 inline ListDeploymentsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
82 private:
83
85 bool m_filtersHasBeenSet = false;
86
87 int m_maxResults;
88 bool m_maxResultsHasBeenSet = false;
89
90 Aws::String m_nextToken;
91 bool m_nextTokenHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace LaunchWizard
96} // namespace Aws
ListDeploymentsRequest & WithNextToken(const char *value)
virtual const char * GetServiceRequestName() const override
const Aws::Vector< DeploymentFilter > & GetFilters() const
ListDeploymentsRequest & WithFilters(const Aws::Vector< DeploymentFilter > &value)
ListDeploymentsRequest & WithNextToken(const Aws::String &value)
ListDeploymentsRequest & AddFilters(const DeploymentFilter &value)
AWS_LAUNCHWIZARD_API Aws::String SerializePayload() const override
void SetFilters(const Aws::Vector< DeploymentFilter > &value)
ListDeploymentsRequest & WithFilters(Aws::Vector< DeploymentFilter > &&value)
ListDeploymentsRequest & WithMaxResults(int value)
void SetFilters(Aws::Vector< DeploymentFilter > &&value)
ListDeploymentsRequest & AddFilters(DeploymentFilter &&value)
ListDeploymentsRequest & WithNextToken(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector