AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CancelPipelineReprocessingRequest.h
1
6#pragma once
7#include <aws/iotanalytics/IoTAnalytics_EXPORTS.h>
8#include <aws/iotanalytics/IoTAnalyticsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace IoTAnalytics
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_IOTANALYTICS_API CancelPipelineReprocessingRequest();
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 "CancelPipelineReprocessing"; }
31
32 AWS_IOTANALYTICS_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetPipelineName() const{ return m_pipelineName; }
40 inline bool PipelineNameHasBeenSet() const { return m_pipelineNameHasBeenSet; }
41 inline void SetPipelineName(const Aws::String& value) { m_pipelineNameHasBeenSet = true; m_pipelineName = value; }
42 inline void SetPipelineName(Aws::String&& value) { m_pipelineNameHasBeenSet = true; m_pipelineName = std::move(value); }
43 inline void SetPipelineName(const char* value) { m_pipelineNameHasBeenSet = true; m_pipelineName.assign(value); }
45 inline CancelPipelineReprocessingRequest& WithPipelineName(Aws::String&& value) { SetPipelineName(std::move(value)); return *this;}
46 inline CancelPipelineReprocessingRequest& WithPipelineName(const char* value) { SetPipelineName(value); return *this;}
48
50
54 inline const Aws::String& GetReprocessingId() const{ return m_reprocessingId; }
55 inline bool ReprocessingIdHasBeenSet() const { return m_reprocessingIdHasBeenSet; }
56 inline void SetReprocessingId(const Aws::String& value) { m_reprocessingIdHasBeenSet = true; m_reprocessingId = value; }
57 inline void SetReprocessingId(Aws::String&& value) { m_reprocessingIdHasBeenSet = true; m_reprocessingId = std::move(value); }
58 inline void SetReprocessingId(const char* value) { m_reprocessingIdHasBeenSet = true; m_reprocessingId.assign(value); }
60 inline CancelPipelineReprocessingRequest& WithReprocessingId(Aws::String&& value) { SetReprocessingId(std::move(value)); return *this;}
61 inline CancelPipelineReprocessingRequest& WithReprocessingId(const char* value) { SetReprocessingId(value); return *this;}
63 private:
64
65 Aws::String m_pipelineName;
66 bool m_pipelineNameHasBeenSet = false;
67
68 Aws::String m_reprocessingId;
69 bool m_reprocessingIdHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace IoTAnalytics
74} // namespace Aws
CancelPipelineReprocessingRequest & WithPipelineName(const Aws::String &value)
CancelPipelineReprocessingRequest & WithReprocessingId(const Aws::String &value)
CancelPipelineReprocessingRequest & WithPipelineName(Aws::String &&value)
CancelPipelineReprocessingRequest & WithReprocessingId(Aws::String &&value)
CancelPipelineReprocessingRequest & WithReprocessingId(const char *value)
CancelPipelineReprocessingRequest & WithPipelineName(const char *value)
AWS_IOTANALYTICS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String