AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ListDeploymentConfigsRequest.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14namespace CodeDeploy
15{
16namespace Model
17{
18
26 {
27 public:
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "ListDeploymentConfigs"; }
35
37
39
40
46 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
47
53 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
54
60 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
61
67 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
68
74 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
75
81 inline ListDeploymentConfigsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
82
88 inline ListDeploymentConfigsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
89
95 inline ListDeploymentConfigsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
96
97 private:
98
99 Aws::String m_nextToken;
100 bool m_nextTokenHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace CodeDeploy
105} // namespace Aws
#define AWS_CODEDEPLOY_API
AWS_CODEDEPLOY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_CODEDEPLOY_API Aws::String SerializePayload() const override
ListDeploymentConfigsRequest & WithNextToken(const Aws::String &value)
ListDeploymentConfigsRequest & WithNextToken(const char *value)
ListDeploymentConfigsRequest & WithNextToken(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String