AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; }
47 inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); }
48 inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); }
50 inline DeleteApplicationOutputRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;}
51 inline DeleteApplicationOutputRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;}
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) { m_currentApplicationVersionIdHasBeenSet = true; m_currentApplicationVersionId = value; }
67
69
80 inline const Aws::String& GetOutputId() const{ return m_outputId; }
81 inline bool OutputIdHasBeenSet() const { return m_outputIdHasBeenSet; }
82 inline void SetOutputId(const Aws::String& value) { m_outputIdHasBeenSet = true; m_outputId = value; }
83 inline void SetOutputId(Aws::String&& value) { m_outputIdHasBeenSet = true; m_outputId = std::move(value); }
84 inline void SetOutputId(const char* value) { m_outputIdHasBeenSet = true; m_outputId.assign(value); }
85 inline DeleteApplicationOutputRequest& WithOutputId(const Aws::String& value) { SetOutputId(value); return *this;}
86 inline DeleteApplicationOutputRequest& WithOutputId(Aws::String&& value) { SetOutputId(std::move(value)); return *this;}
87 inline DeleteApplicationOutputRequest& WithOutputId(const char* value) { SetOutputId(value); return *this;}
89 private:
90
91 Aws::String m_applicationName;
92 bool m_applicationNameHasBeenSet = false;
93
94 long long m_currentApplicationVersionId;
95 bool m_currentApplicationVersionIdHasBeenSet = false;
96
97 Aws::String m_outputId;
98 bool m_outputIdHasBeenSet = false;
99 };
100
101} // namespace Model
102} // namespace KinesisAnalytics
103} // namespace Aws
DeleteApplicationOutputRequest & WithOutputId(const char *value)
DeleteApplicationOutputRequest & WithOutputId(const Aws::String &value)
DeleteApplicationOutputRequest & WithApplicationName(const Aws::String &value)
AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteApplicationOutputRequest & WithApplicationName(const char *value)
DeleteApplicationOutputRequest & WithApplicationName(Aws::String &&value)
AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override
DeleteApplicationOutputRequest & WithOutputId(Aws::String &&value)
DeleteApplicationOutputRequest & WithCurrentApplicationVersionId(long long value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String