AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchGetDeploymentTargetsResult.h
1
6#pragma once
7#include <aws/codedeploy/CodeDeploy_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/codedeploy/model/DeploymentTarget.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace CodeDeploy
26{
27namespace Model
28{
30 {
31 public:
32 AWS_CODEDEPLOY_API BatchGetDeploymentTargetsResult();
35
36
38
48 inline const Aws::Vector<DeploymentTarget>& GetDeploymentTargets() const{ return m_deploymentTargets; }
49 inline void SetDeploymentTargets(const Aws::Vector<DeploymentTarget>& value) { m_deploymentTargets = value; }
50 inline void SetDeploymentTargets(Aws::Vector<DeploymentTarget>&& value) { m_deploymentTargets = std::move(value); }
53 inline BatchGetDeploymentTargetsResult& AddDeploymentTargets(const DeploymentTarget& value) { m_deploymentTargets.push_back(value); return *this; }
54 inline BatchGetDeploymentTargetsResult& AddDeploymentTargets(DeploymentTarget&& value) { m_deploymentTargets.push_back(std::move(value)); return *this; }
56
58
59 inline const Aws::String& GetRequestId() const{ return m_requestId; }
60 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
61 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
62 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
63 inline BatchGetDeploymentTargetsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
64 inline BatchGetDeploymentTargetsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
65 inline BatchGetDeploymentTargetsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
67 private:
68
69 Aws::Vector<DeploymentTarget> m_deploymentTargets;
70
71 Aws::String m_requestId;
72 };
73
74} // namespace Model
75} // namespace CodeDeploy
76} // namespace Aws
void SetDeploymentTargets(Aws::Vector< DeploymentTarget > &&value)
const Aws::Vector< DeploymentTarget > & GetDeploymentTargets() const
void SetDeploymentTargets(const Aws::Vector< DeploymentTarget > &value)
BatchGetDeploymentTargetsResult & WithRequestId(const Aws::String &value)
BatchGetDeploymentTargetsResult & WithDeploymentTargets(Aws::Vector< DeploymentTarget > &&value)
BatchGetDeploymentTargetsResult & WithRequestId(const char *value)
BatchGetDeploymentTargetsResult & AddDeploymentTargets(const DeploymentTarget &value)
AWS_CODEDEPLOY_API BatchGetDeploymentTargetsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
BatchGetDeploymentTargetsResult & WithRequestId(Aws::String &&value)
BatchGetDeploymentTargetsResult & WithDeploymentTargets(const Aws::Vector< DeploymentTarget > &value)
BatchGetDeploymentTargetsResult & AddDeploymentTargets(DeploymentTarget &&value)
AWS_CODEDEPLOY_API BatchGetDeploymentTargetsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue