AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
GetDeploymentPatternVersionRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/launch-wizard/LaunchWizardRequest.h>
9#include <aws/launch-wizard/LaunchWizard_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace LaunchWizard {
15namespace Model {
16
20 public:
21 AWS_LAUNCHWIZARD_API GetDeploymentPatternVersionRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "GetDeploymentPatternVersion"; }
28
29 AWS_LAUNCHWIZARD_API Aws::String SerializePayload() const override;
30
32
38 inline const Aws::String& GetWorkloadName() const { return m_workloadName; }
39 inline bool WorkloadNameHasBeenSet() const { return m_workloadNameHasBeenSet; }
40 template <typename WorkloadNameT = Aws::String>
41 void SetWorkloadName(WorkloadNameT&& value) {
42 m_workloadNameHasBeenSet = true;
43 m_workloadName = std::forward<WorkloadNameT>(value);
44 }
45 template <typename WorkloadNameT = Aws::String>
47 SetWorkloadName(std::forward<WorkloadNameT>(value));
48 return *this;
49 }
51
53
59 inline const Aws::String& GetDeploymentPatternName() const { return m_deploymentPatternName; }
60 inline bool DeploymentPatternNameHasBeenSet() const { return m_deploymentPatternNameHasBeenSet; }
61 template <typename DeploymentPatternNameT = Aws::String>
62 void SetDeploymentPatternName(DeploymentPatternNameT&& value) {
63 m_deploymentPatternNameHasBeenSet = true;
64 m_deploymentPatternName = std::forward<DeploymentPatternNameT>(value);
65 }
66 template <typename DeploymentPatternNameT = Aws::String>
68 SetDeploymentPatternName(std::forward<DeploymentPatternNameT>(value));
69 return *this;
70 }
72
74
77 inline const Aws::String& GetDeploymentPatternVersionName() const { return m_deploymentPatternVersionName; }
78 inline bool DeploymentPatternVersionNameHasBeenSet() const { return m_deploymentPatternVersionNameHasBeenSet; }
79 template <typename DeploymentPatternVersionNameT = Aws::String>
80 void SetDeploymentPatternVersionName(DeploymentPatternVersionNameT&& value) {
81 m_deploymentPatternVersionNameHasBeenSet = true;
82 m_deploymentPatternVersionName = std::forward<DeploymentPatternVersionNameT>(value);
83 }
84 template <typename DeploymentPatternVersionNameT = Aws::String>
86 SetDeploymentPatternVersionName(std::forward<DeploymentPatternVersionNameT>(value));
87 return *this;
88 }
90 private:
91 Aws::String m_workloadName;
92
93 Aws::String m_deploymentPatternName;
94
95 Aws::String m_deploymentPatternVersionName;
96 bool m_workloadNameHasBeenSet = false;
97 bool m_deploymentPatternNameHasBeenSet = false;
98 bool m_deploymentPatternVersionNameHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace LaunchWizard
103} // namespace Aws
GetDeploymentPatternVersionRequest & WithDeploymentPatternVersionName(DeploymentPatternVersionNameT &&value)
GetDeploymentPatternVersionRequest & WithWorkloadName(WorkloadNameT &&value)
GetDeploymentPatternVersionRequest & WithDeploymentPatternName(DeploymentPatternNameT &&value)
AWS_LAUNCHWIZARD_API Aws::String SerializePayload() const override
AWS_LAUNCHWIZARD_API GetDeploymentPatternVersionRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String