AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
GetTaskProtectionRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/ecs/ECSRequest.h>
10#include <aws/ecs/ECS_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace ECS {
16namespace Model {
17
21 public:
22 AWS_ECS_API GetTaskProtectionRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "GetTaskProtection"; }
29
30 AWS_ECS_API Aws::String SerializePayload() const override;
31
33
35
39 inline const Aws::String& GetCluster() const { return m_cluster; }
40 inline bool ClusterHasBeenSet() const { return m_clusterHasBeenSet; }
41 template <typename ClusterT = Aws::String>
42 void SetCluster(ClusterT&& value) {
43 m_clusterHasBeenSet = true;
44 m_cluster = std::forward<ClusterT>(value);
45 }
46 template <typename ClusterT = Aws::String>
48 SetCluster(std::forward<ClusterT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::Vector<Aws::String>& GetTasks() const { return m_tasks; }
58 inline bool TasksHasBeenSet() const { return m_tasksHasBeenSet; }
59 template <typename TasksT = Aws::Vector<Aws::String>>
60 void SetTasks(TasksT&& value) {
61 m_tasksHasBeenSet = true;
62 m_tasks = std::forward<TasksT>(value);
63 }
64 template <typename TasksT = Aws::Vector<Aws::String>>
66 SetTasks(std::forward<TasksT>(value));
67 return *this;
68 }
69 template <typename TasksT = Aws::String>
71 m_tasksHasBeenSet = true;
72 m_tasks.emplace_back(std::forward<TasksT>(value));
73 return *this;
74 }
76 private:
77 Aws::String m_cluster;
78
80 bool m_clusterHasBeenSet = false;
81 bool m_tasksHasBeenSet = false;
82};
83
84} // namespace Model
85} // namespace ECS
86} // namespace Aws
AWS_ECS_API GetTaskProtectionRequest()=default
AWS_ECS_API Aws::String SerializePayload() const override
const Aws::Vector< Aws::String > & GetTasks() const
virtual const char * GetServiceRequestName() const override
GetTaskProtectionRequest & AddTasks(TasksT &&value)
GetTaskProtectionRequest & WithTasks(TasksT &&value)
GetTaskProtectionRequest & WithCluster(ClusterT &&value)
AWS_ECS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() 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