AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
SetUnhealthyNodeReplacementRequest.h
1
6#pragma once
7#include <aws/elasticmapreduce/EMR_EXPORTS.h>
8#include <aws/elasticmapreduce/EMRRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EMR
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_EMR_API SetUnhealthyNodeReplacementRequest() = 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 "SetUnhealthyNodeReplacement"; }
32
33 AWS_EMR_API Aws::String SerializePayload() const override;
34
36
37
39
44 inline const Aws::Vector<Aws::String>& GetJobFlowIds() const { return m_jobFlowIds; }
45 inline bool JobFlowIdsHasBeenSet() const { return m_jobFlowIdsHasBeenSet; }
46 template<typename JobFlowIdsT = Aws::Vector<Aws::String>>
47 void SetJobFlowIds(JobFlowIdsT&& value) { m_jobFlowIdsHasBeenSet = true; m_jobFlowIds = std::forward<JobFlowIdsT>(value); }
48 template<typename JobFlowIdsT = Aws::Vector<Aws::String>>
49 SetUnhealthyNodeReplacementRequest& WithJobFlowIds(JobFlowIdsT&& value) { SetJobFlowIds(std::forward<JobFlowIdsT>(value)); return *this;}
50 template<typename JobFlowIdsT = Aws::String>
51 SetUnhealthyNodeReplacementRequest& AddJobFlowIds(JobFlowIdsT&& value) { m_jobFlowIdsHasBeenSet = true; m_jobFlowIds.emplace_back(std::forward<JobFlowIdsT>(value)); return *this; }
53
55
59 inline bool GetUnhealthyNodeReplacement() const { return m_unhealthyNodeReplacement; }
60 inline bool UnhealthyNodeReplacementHasBeenSet() const { return m_unhealthyNodeReplacementHasBeenSet; }
61 inline void SetUnhealthyNodeReplacement(bool value) { m_unhealthyNodeReplacementHasBeenSet = true; m_unhealthyNodeReplacement = value; }
64 private:
65
66 Aws::Vector<Aws::String> m_jobFlowIds;
67 bool m_jobFlowIdsHasBeenSet = false;
68
69 bool m_unhealthyNodeReplacement{false};
70 bool m_unhealthyNodeReplacementHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace EMR
75} // namespace Aws
SetUnhealthyNodeReplacementRequest & AddJobFlowIds(JobFlowIdsT &&value)
AWS_EMR_API Aws::String SerializePayload() const override
SetUnhealthyNodeReplacementRequest & WithUnhealthyNodeReplacement(bool value)
AWS_EMR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
SetUnhealthyNodeReplacementRequest & WithJobFlowIds(JobFlowIdsT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector