AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ContinueDeploymentRequest.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 <aws/codedeploy/model/DeploymentWaitType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CodeDeploy
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CODEDEPLOY_API ContinueDeploymentRequest() = default;
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 "ContinueDeployment"; }
32
33 AWS_CODEDEPLOY_API Aws::String SerializePayload() const override;
34
36
37
39
43 inline const Aws::String& GetDeploymentId() const { return m_deploymentId; }
44 inline bool DeploymentIdHasBeenSet() const { return m_deploymentIdHasBeenSet; }
45 template<typename DeploymentIdT = Aws::String>
46 void SetDeploymentId(DeploymentIdT&& value) { m_deploymentIdHasBeenSet = true; m_deploymentId = std::forward<DeploymentIdT>(value); }
47 template<typename DeploymentIdT = Aws::String>
48 ContinueDeploymentRequest& WithDeploymentId(DeploymentIdT&& value) { SetDeploymentId(std::forward<DeploymentIdT>(value)); return *this;}
50
52
58 inline DeploymentWaitType GetDeploymentWaitType() const { return m_deploymentWaitType; }
59 inline bool DeploymentWaitTypeHasBeenSet() const { return m_deploymentWaitTypeHasBeenSet; }
60 inline void SetDeploymentWaitType(DeploymentWaitType value) { m_deploymentWaitTypeHasBeenSet = true; m_deploymentWaitType = value; }
63 private:
64
65 Aws::String m_deploymentId;
66 bool m_deploymentIdHasBeenSet = false;
67
69 bool m_deploymentWaitTypeHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace CodeDeploy
74} // namespace Aws
AWS_CODEDEPLOY_API ContinueDeploymentRequest()=default
AWS_CODEDEPLOY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ContinueDeploymentRequest & WithDeploymentId(DeploymentIdT &&value)
virtual const char * GetServiceRequestName() const override
AWS_CODEDEPLOY_API Aws::String SerializePayload() const override
ContinueDeploymentRequest & WithDeploymentWaitType(DeploymentWaitType value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String