AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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:
24 AWS_KINESISANALYTICS_API DeleteApplicationReferenceDataSourceRequest() = 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 "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 template<typename ApplicationNameT = Aws::String>
44 void SetApplicationName(ApplicationNameT&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::forward<ApplicationNameT>(value); }
45 template<typename ApplicationNameT = Aws::String>
46 DeleteApplicationReferenceDataSourceRequest& WithApplicationName(ApplicationNameT&& value) { SetApplicationName(std::forward<ApplicationNameT>(value)); return *this;}
48
50
57 inline long long GetCurrentApplicationVersionId() const { return m_currentApplicationVersionId; }
58 inline bool CurrentApplicationVersionIdHasBeenSet() const { return m_currentApplicationVersionIdHasBeenSet; }
59 inline void SetCurrentApplicationVersionId(long long value) { m_currentApplicationVersionIdHasBeenSet = true; m_currentApplicationVersionId = value; }
62
64
72 inline const Aws::String& GetReferenceId() const { return m_referenceId; }
73 inline bool ReferenceIdHasBeenSet() const { return m_referenceIdHasBeenSet; }
74 template<typename ReferenceIdT = Aws::String>
75 void SetReferenceId(ReferenceIdT&& value) { m_referenceIdHasBeenSet = true; m_referenceId = std::forward<ReferenceIdT>(value); }
76 template<typename ReferenceIdT = Aws::String>
77 DeleteApplicationReferenceDataSourceRequest& WithReferenceId(ReferenceIdT&& value) { SetReferenceId(std::forward<ReferenceIdT>(value)); return *this;}
79 private:
80
81 Aws::String m_applicationName;
82 bool m_applicationNameHasBeenSet = false;
83
84 long long m_currentApplicationVersionId{0};
85 bool m_currentApplicationVersionIdHasBeenSet = false;
86
87 Aws::String m_referenceId;
88 bool m_referenceIdHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace KinesisAnalytics
93} // namespace Aws
AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override
AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteApplicationReferenceDataSourceRequest & WithCurrentApplicationVersionId(long long value)
DeleteApplicationReferenceDataSourceRequest & WithReferenceId(ReferenceIdT &&value)
DeleteApplicationReferenceDataSourceRequest & WithApplicationName(ApplicationNameT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String