AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
TerminateJobFlowsRequest.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 TerminateJobFlowsRequest() = 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 "TerminateJobFlows"; }
36
37 AWS_EMR_API Aws::String SerializePayload() const override;
38
40
41
43
46 inline const Aws::Vector<Aws::String>& GetJobFlowIds() const { return m_jobFlowIds; }
47 inline bool JobFlowIdsHasBeenSet() const { return m_jobFlowIdsHasBeenSet; }
48 template<typename JobFlowIdsT = Aws::Vector<Aws::String>>
49 void SetJobFlowIds(JobFlowIdsT&& value) { m_jobFlowIdsHasBeenSet = true; m_jobFlowIds = std::forward<JobFlowIdsT>(value); }
50 template<typename JobFlowIdsT = Aws::Vector<Aws::String>>
51 TerminateJobFlowsRequest& WithJobFlowIds(JobFlowIdsT&& value) { SetJobFlowIds(std::forward<JobFlowIdsT>(value)); return *this;}
52 template<typename JobFlowIdsT = Aws::String>
53 TerminateJobFlowsRequest& AddJobFlowIds(JobFlowIdsT&& value) { m_jobFlowIdsHasBeenSet = true; m_jobFlowIds.emplace_back(std::forward<JobFlowIdsT>(value)); return *this; }
55 private:
56
57 Aws::Vector<Aws::String> m_jobFlowIds;
58 bool m_jobFlowIdsHasBeenSet = false;
59 };
60
61} // namespace Model
62} // namespace EMR
63} // namespace Aws
const Aws::Vector< Aws::String > & GetJobFlowIds() const
TerminateJobFlowsRequest & AddJobFlowIds(JobFlowIdsT &&value)
TerminateJobFlowsRequest & WithJobFlowIds(JobFlowIdsT &&value)
AWS_EMR_API Aws::String SerializePayload() const override
AWS_EMR_API TerminateJobFlowsRequest()=default
AWS_EMR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
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