AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
SetTerminationProtectionRequest.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
27 {
28 public:
29 AWS_EMR_API SetTerminationProtectionRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "SetTerminationProtection"; }
36
37 AWS_EMR_API Aws::String SerializePayload() const override;
38
40
41
43
48 inline const Aws::Vector<Aws::String>& GetJobFlowIds() const { return m_jobFlowIds; }
49 inline bool JobFlowIdsHasBeenSet() const { return m_jobFlowIdsHasBeenSet; }
50 template<typename JobFlowIdsT = Aws::Vector<Aws::String>>
51 void SetJobFlowIds(JobFlowIdsT&& value) { m_jobFlowIdsHasBeenSet = true; m_jobFlowIds = std::forward<JobFlowIdsT>(value); }
52 template<typename JobFlowIdsT = Aws::Vector<Aws::String>>
53 SetTerminationProtectionRequest& WithJobFlowIds(JobFlowIdsT&& value) { SetJobFlowIds(std::forward<JobFlowIdsT>(value)); return *this;}
54 template<typename JobFlowIdsT = Aws::String>
55 SetTerminationProtectionRequest& AddJobFlowIds(JobFlowIdsT&& value) { m_jobFlowIdsHasBeenSet = true; m_jobFlowIds.emplace_back(std::forward<JobFlowIdsT>(value)); return *this; }
57
59
64 inline bool GetTerminationProtected() const { return m_terminationProtected; }
65 inline bool TerminationProtectedHasBeenSet() const { return m_terminationProtectedHasBeenSet; }
66 inline void SetTerminationProtected(bool value) { m_terminationProtectedHasBeenSet = true; m_terminationProtected = value; }
69 private:
70
71 Aws::Vector<Aws::String> m_jobFlowIds;
72 bool m_jobFlowIdsHasBeenSet = false;
73
74 bool m_terminationProtected{false};
75 bool m_terminationProtectedHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace EMR
80} // namespace Aws
SetTerminationProtectionRequest & WithJobFlowIds(JobFlowIdsT &&value)
AWS_EMR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
SetTerminationProtectionRequest & AddJobFlowIds(JobFlowIdsT &&value)
const Aws::Vector< Aws::String > & GetJobFlowIds() const
AWS_EMR_API Aws::String SerializePayload() const override
SetTerminationProtectionRequest & WithTerminationProtected(bool 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