AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteApplicationReferenceDataSourceRequest.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
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 "DeleteApplicationReferenceDataSource"; }
31
32 AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override;
33
34 AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
41 inline const Aws::String& GetApplicationName() const{ return m_applicationName; }
42 inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
43 inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; }
44 inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); }
45 inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); }
50
52
59 inline long long GetCurrentApplicationVersionId() const{ return m_currentApplicationVersionId; }
60 inline bool CurrentApplicationVersionIdHasBeenSet() const { return m_currentApplicationVersionIdHasBeenSet; }
61 inline void SetCurrentApplicationVersionId(long long value) { m_currentApplicationVersionIdHasBeenSet = true; m_currentApplicationVersionId = value; }
64
66
74 inline const Aws::String& GetReferenceId() const{ return m_referenceId; }
75 inline bool ReferenceIdHasBeenSet() const { return m_referenceIdHasBeenSet; }
76 inline void SetReferenceId(const Aws::String& value) { m_referenceIdHasBeenSet = true; m_referenceId = value; }
77 inline void SetReferenceId(Aws::String&& value) { m_referenceIdHasBeenSet = true; m_referenceId = std::move(value); }
78 inline void SetReferenceId(const char* value) { m_referenceIdHasBeenSet = true; m_referenceId.assign(value); }
81 inline DeleteApplicationReferenceDataSourceRequest& WithReferenceId(const char* value) { SetReferenceId(value); return *this;}
83 private:
84
85 Aws::String m_applicationName;
86 bool m_applicationNameHasBeenSet = false;
87
88 long long m_currentApplicationVersionId;
89 bool m_currentApplicationVersionIdHasBeenSet = false;
90
91 Aws::String m_referenceId;
92 bool m_referenceIdHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace KinesisAnalytics
97} // namespace Aws
DeleteApplicationReferenceDataSourceRequest & WithApplicationName(Aws::String &&value)
AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override
DeleteApplicationReferenceDataSourceRequest & WithApplicationName(const Aws::String &value)
DeleteApplicationReferenceDataSourceRequest & WithReferenceId(Aws::String &&value)
AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteApplicationReferenceDataSourceRequest & WithCurrentApplicationVersionId(long long value)
DeleteApplicationReferenceDataSourceRequest & WithApplicationName(const char *value)
DeleteApplicationReferenceDataSourceRequest & WithReferenceId(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String