AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListEnvironmentOutputsRequest.h
1
6#pragma once
7#include <aws/proton/Proton_EXPORTS.h>
8#include <aws/proton/ProtonRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Proton
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "ListEnvironmentOutputs"; }
31
32 AWS_PROTON_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetDeploymentId() const{ return m_deploymentId; }
42 inline bool DeploymentIdHasBeenSet() const { return m_deploymentIdHasBeenSet; }
43 inline void SetDeploymentId(const Aws::String& value) { m_deploymentIdHasBeenSet = true; m_deploymentId = value; }
44 inline void SetDeploymentId(Aws::String&& value) { m_deploymentIdHasBeenSet = true; m_deploymentId = std::move(value); }
45 inline void SetDeploymentId(const char* value) { m_deploymentIdHasBeenSet = true; m_deploymentId.assign(value); }
46 inline ListEnvironmentOutputsRequest& WithDeploymentId(const Aws::String& value) { SetDeploymentId(value); return *this;}
47 inline ListEnvironmentOutputsRequest& WithDeploymentId(Aws::String&& value) { SetDeploymentId(std::move(value)); return *this;}
48 inline ListEnvironmentOutputsRequest& WithDeploymentId(const char* value) { SetDeploymentId(value); return *this;}
50
52
55 inline const Aws::String& GetEnvironmentName() const{ return m_environmentName; }
56 inline bool EnvironmentNameHasBeenSet() const { return m_environmentNameHasBeenSet; }
57 inline void SetEnvironmentName(const Aws::String& value) { m_environmentNameHasBeenSet = true; m_environmentName = value; }
58 inline void SetEnvironmentName(Aws::String&& value) { m_environmentNameHasBeenSet = true; m_environmentName = std::move(value); }
59 inline void SetEnvironmentName(const char* value) { m_environmentNameHasBeenSet = true; m_environmentName.assign(value); }
61 inline ListEnvironmentOutputsRequest& WithEnvironmentName(Aws::String&& value) { SetEnvironmentName(std::move(value)); return *this;}
62 inline ListEnvironmentOutputsRequest& WithEnvironmentName(const char* value) { SetEnvironmentName(value); return *this;}
64
66
71 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
72 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
73 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
74 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
75 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
76 inline ListEnvironmentOutputsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
77 inline ListEnvironmentOutputsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
78 inline ListEnvironmentOutputsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
80 private:
81
82 Aws::String m_deploymentId;
83 bool m_deploymentIdHasBeenSet = false;
84
85 Aws::String m_environmentName;
86 bool m_environmentNameHasBeenSet = false;
87
88 Aws::String m_nextToken;
89 bool m_nextTokenHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace Proton
94} // namespace Aws
ListEnvironmentOutputsRequest & WithEnvironmentName(const char *value)
ListEnvironmentOutputsRequest & WithDeploymentId(Aws::String &&value)
AWS_PROTON_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_PROTON_API Aws::String SerializePayload() const override
ListEnvironmentOutputsRequest & WithEnvironmentName(const Aws::String &value)
ListEnvironmentOutputsRequest & WithEnvironmentName(Aws::String &&value)
ListEnvironmentOutputsRequest & WithNextToken(const char *value)
ListEnvironmentOutputsRequest & WithDeploymentId(const Aws::String &value)
ListEnvironmentOutputsRequest & WithDeploymentId(const char *value)
ListEnvironmentOutputsRequest & WithNextToken(const Aws::String &value)
ListEnvironmentOutputsRequest & WithNextToken(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String