AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetDeploymentGroupRequest.h
1
6#pragma once
7#include <aws/codedeploy/CodeDeploy_EXPORTS.h>
8#include <aws/codedeploy/CodeDeployRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CodeDeploy
15{
16namespace Model
17{
18
26 {
27 public:
28 AWS_CODEDEPLOY_API GetDeploymentGroupRequest();
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 "GetDeploymentGroup"; }
35
36 AWS_CODEDEPLOY_API Aws::String SerializePayload() const override;
37
39
40
42
46 inline const Aws::String& GetApplicationName() const{ return m_applicationName; }
47 inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
48 inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; }
49 inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); }
50 inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); }
51 inline GetDeploymentGroupRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;}
52 inline GetDeploymentGroupRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;}
53 inline GetDeploymentGroupRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;}
55
57
60 inline const Aws::String& GetDeploymentGroupName() const{ return m_deploymentGroupName; }
61 inline bool DeploymentGroupNameHasBeenSet() const { return m_deploymentGroupNameHasBeenSet; }
62 inline void SetDeploymentGroupName(const Aws::String& value) { m_deploymentGroupNameHasBeenSet = true; m_deploymentGroupName = value; }
63 inline void SetDeploymentGroupName(Aws::String&& value) { m_deploymentGroupNameHasBeenSet = true; m_deploymentGroupName = std::move(value); }
64 inline void SetDeploymentGroupName(const char* value) { m_deploymentGroupNameHasBeenSet = true; m_deploymentGroupName.assign(value); }
66 inline GetDeploymentGroupRequest& WithDeploymentGroupName(Aws::String&& value) { SetDeploymentGroupName(std::move(value)); return *this;}
67 inline GetDeploymentGroupRequest& WithDeploymentGroupName(const char* value) { SetDeploymentGroupName(value); return *this;}
69 private:
70
71 Aws::String m_applicationName;
72 bool m_applicationNameHasBeenSet = false;
73
74 Aws::String m_deploymentGroupName;
75 bool m_deploymentGroupNameHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace CodeDeploy
80} // namespace Aws
GetDeploymentGroupRequest & WithDeploymentGroupName(Aws::String &&value)
GetDeploymentGroupRequest & WithDeploymentGroupName(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
GetDeploymentGroupRequest & WithApplicationName(Aws::String &&value)
GetDeploymentGroupRequest & WithApplicationName(const Aws::String &value)
GetDeploymentGroupRequest & WithDeploymentGroupName(const char *value)
GetDeploymentGroupRequest & WithApplicationName(const char *value)
AWS_CODEDEPLOY_API Aws::String SerializePayload() const override
AWS_CODEDEPLOY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String