AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DeleteApplicationOutputRequest.h
1
6#pragma once
7#include <aws/kinesisanalytics/KinesisAnalytics_EXPORTS.h>
8#include <aws/kinesisanalytics/KinesisAnalyticsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace KinesisAnalytics
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_KINESISANALYTICS_API DeleteApplicationOutputRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "DeleteApplicationOutput"; }
34
35 AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override;
36
37 AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
38
39
41
44 inline const Aws::String& GetApplicationName() const { return m_applicationName; }
45 inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
46 template<typename ApplicationNameT = Aws::String>
47 void SetApplicationName(ApplicationNameT&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::forward<ApplicationNameT>(value); }
48 template<typename ApplicationNameT = Aws::String>
49 DeleteApplicationOutputRequest& WithApplicationName(ApplicationNameT&& value) { SetApplicationName(std::forward<ApplicationNameT>(value)); return *this;}
51
53
60 inline long long GetCurrentApplicationVersionId() const { return m_currentApplicationVersionId; }
61 inline bool CurrentApplicationVersionIdHasBeenSet() const { return m_currentApplicationVersionIdHasBeenSet; }
62 inline void SetCurrentApplicationVersionId(long long value) { m_currentApplicationVersionIdHasBeenSet = true; m_currentApplicationVersionId = value; }
65
67
78 inline const Aws::String& GetOutputId() const { return m_outputId; }
79 inline bool OutputIdHasBeenSet() const { return m_outputIdHasBeenSet; }
80 template<typename OutputIdT = Aws::String>
81 void SetOutputId(OutputIdT&& value) { m_outputIdHasBeenSet = true; m_outputId = std::forward<OutputIdT>(value); }
82 template<typename OutputIdT = Aws::String>
83 DeleteApplicationOutputRequest& WithOutputId(OutputIdT&& value) { SetOutputId(std::forward<OutputIdT>(value)); return *this;}
85 private:
86
87 Aws::String m_applicationName;
88 bool m_applicationNameHasBeenSet = false;
89
90 long long m_currentApplicationVersionId{0};
91 bool m_currentApplicationVersionIdHasBeenSet = false;
92
93 Aws::String m_outputId;
94 bool m_outputIdHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace KinesisAnalytics
99} // 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