AWS SDK for C++

AWS SDK for C++ Version 1.11.555

All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
Loading...
Searching...
No Matches
GetMaintenanceWindowExecutionTaskRequest.h
1
6#pragma once
7#include <aws/ssm/SSM_EXPORTS.h>
8#include <aws/ssm/SSMRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SSM
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetMaintenanceWindowExecutionTask"; }
31
32 AWS_SSM_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetWindowExecutionId() const { return m_windowExecutionId; }
42 inline bool WindowExecutionIdHasBeenSet() const { return m_windowExecutionIdHasBeenSet; }
43 template<typename WindowExecutionIdT = Aws::String>
44 void SetWindowExecutionId(WindowExecutionIdT&& value) { m_windowExecutionIdHasBeenSet = true; m_windowExecutionId = std::forward<WindowExecutionIdT>(value); }
45 template<typename WindowExecutionIdT = Aws::String>
46 GetMaintenanceWindowExecutionTaskRequest& WithWindowExecutionId(WindowExecutionIdT&& value) { SetWindowExecutionId(std::forward<WindowExecutionIdT>(value)); return *this;}
48
50
54 inline const Aws::String& GetTaskId() const { return m_taskId; }
55 inline bool TaskIdHasBeenSet() const { return m_taskIdHasBeenSet; }
56 template<typename TaskIdT = Aws::String>
57 void SetTaskId(TaskIdT&& value) { m_taskIdHasBeenSet = true; m_taskId = std::forward<TaskIdT>(value); }
58 template<typename TaskIdT = Aws::String>
59 GetMaintenanceWindowExecutionTaskRequest& WithTaskId(TaskIdT&& value) { SetTaskId(std::forward<TaskIdT>(value)); return *this;}
61 private:
62
63 Aws::String m_windowExecutionId;
64 bool m_windowExecutionIdHasBeenSet = false;
65
66 Aws::String m_taskId;
67 bool m_taskIdHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace SSM
72} // namespace Aws
GetMaintenanceWindowExecutionTaskRequest & WithTaskId(TaskIdT &&value)
AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_SSM_API Aws::String SerializePayload() const override
GetMaintenanceWindowExecutionTaskRequest & WithWindowExecutionId(WindowExecutionIdT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String