AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DeleteApplicationOutputRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/kinesisanalytics/KinesisAnalyticsRequest.h>
9#include <aws/kinesisanalytics/KinesisAnalytics_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace KinesisAnalytics {
15namespace Model {
16
23 public:
24 AWS_KINESISANALYTICS_API DeleteApplicationOutputRequest() = default;
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 "DeleteApplicationOutput"; }
31
32 AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override;
33
34 AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
37
40 inline const Aws::String& GetApplicationName() const { return m_applicationName; }
41 inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
42 template <typename ApplicationNameT = Aws::String>
43 void SetApplicationName(ApplicationNameT&& value) {
44 m_applicationNameHasBeenSet = true;
45 m_applicationName = std::forward<ApplicationNameT>(value);
46 }
47 template <typename ApplicationNameT = Aws::String>
49 SetApplicationName(std::forward<ApplicationNameT>(value));
50 return *this;
51 }
53
55
62 inline long long GetCurrentApplicationVersionId() const { return m_currentApplicationVersionId; }
63 inline bool CurrentApplicationVersionIdHasBeenSet() const { return m_currentApplicationVersionIdHasBeenSet; }
64 inline void SetCurrentApplicationVersionId(long long value) {
65 m_currentApplicationVersionIdHasBeenSet = true;
66 m_currentApplicationVersionId = value;
67 }
70 return *this;
71 }
73
75
86 inline const Aws::String& GetOutputId() const { return m_outputId; }
87 inline bool OutputIdHasBeenSet() const { return m_outputIdHasBeenSet; }
88 template <typename OutputIdT = Aws::String>
89 void SetOutputId(OutputIdT&& value) {
90 m_outputIdHasBeenSet = true;
91 m_outputId = std::forward<OutputIdT>(value);
92 }
93 template <typename OutputIdT = Aws::String>
95 SetOutputId(std::forward<OutputIdT>(value));
96 return *this;
97 }
99 private:
100 Aws::String m_applicationName;
101
102 long long m_currentApplicationVersionId{0};
103
104 Aws::String m_outputId;
105 bool m_applicationNameHasBeenSet = false;
106 bool m_currentApplicationVersionIdHasBeenSet = false;
107 bool m_outputIdHasBeenSet = false;
108};
109
110} // namespace Model
111} // namespace KinesisAnalytics
112} // namespace Aws
DeleteApplicationOutputRequest & WithOutputId(OutputIdT &&value)
AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_KINESISANALYTICS_API DeleteApplicationOutputRequest()=default
AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override
DeleteApplicationOutputRequest & WithCurrentApplicationVersionId(long long value)
DeleteApplicationOutputRequest & WithApplicationName(ApplicationNameT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String