AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeClustersRequest.h
1
6#pragma once
7#include <aws/dax/DAX_EXPORTS.h>
8#include <aws/dax/DAXRequest.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 DAX
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 "DescribeClusters"; }
32
33 AWS_DAX_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::Vector<Aws::String>& GetClusterNames() const{ return m_clusterNames; }
43 inline bool ClusterNamesHasBeenSet() const { return m_clusterNamesHasBeenSet; }
44 inline void SetClusterNames(const Aws::Vector<Aws::String>& value) { m_clusterNamesHasBeenSet = true; m_clusterNames = value; }
45 inline void SetClusterNames(Aws::Vector<Aws::String>&& value) { m_clusterNamesHasBeenSet = true; m_clusterNames = std::move(value); }
47 inline DescribeClustersRequest& WithClusterNames(Aws::Vector<Aws::String>&& value) { SetClusterNames(std::move(value)); return *this;}
48 inline DescribeClustersRequest& AddClusterNames(const Aws::String& value) { m_clusterNamesHasBeenSet = true; m_clusterNames.push_back(value); return *this; }
49 inline DescribeClustersRequest& AddClusterNames(Aws::String&& value) { m_clusterNamesHasBeenSet = true; m_clusterNames.push_back(std::move(value)); return *this; }
50 inline DescribeClustersRequest& AddClusterNames(const char* value) { m_clusterNamesHasBeenSet = true; m_clusterNames.push_back(value); return *this; }
52
54
60 inline int GetMaxResults() const{ return m_maxResults; }
61 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
62 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
63 inline DescribeClustersRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
65
67
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 DescribeClustersRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
79 inline DescribeClustersRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
80 inline DescribeClustersRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
82 private:
83
84 Aws::Vector<Aws::String> m_clusterNames;
85 bool m_clusterNamesHasBeenSet = 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 DAX
96} // namespace Aws
DescribeClustersRequest & WithNextToken(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
DescribeClustersRequest & AddClusterNames(Aws::String &&value)
DescribeClustersRequest & WithNextToken(const Aws::String &value)
const Aws::Vector< Aws::String > & GetClusterNames() const
DescribeClustersRequest & WithNextToken(const char *value)
AWS_DAX_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeClustersRequest & WithClusterNames(Aws::Vector< Aws::String > &&value)
DescribeClustersRequest & AddClusterNames(const char *value)
DescribeClustersRequest & AddClusterNames(const Aws::String &value)
void SetClusterNames(const Aws::Vector< Aws::String > &value)
DescribeClustersRequest & WithMaxResults(int value)
AWS_DAX_API Aws::String SerializePayload() const override
void SetClusterNames(Aws::Vector< Aws::String > &&value)
DescribeClustersRequest & WithClusterNames(const Aws::Vector< Aws::String > &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