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/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
8#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace KinesisAnalyticsV2
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_KINESISANALYTICSV2_API DeleteApplicationReferenceDataSourceRequest();
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_KINESISANALYTICSV2_API Aws::String SerializePayload() const override;
33
34 AWS_KINESISANALYTICSV2_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
58 inline long long GetCurrentApplicationVersionId() const{ return m_currentApplicationVersionId; }
59 inline bool CurrentApplicationVersionIdHasBeenSet() const { return m_currentApplicationVersionIdHasBeenSet; }
60 inline void SetCurrentApplicationVersionId(long long value) { m_currentApplicationVersionIdHasBeenSet = true; m_currentApplicationVersionId = value; }
63
65
71 inline const Aws::String& GetReferenceId() const{ return m_referenceId; }
72 inline bool ReferenceIdHasBeenSet() const { return m_referenceIdHasBeenSet; }
73 inline void SetReferenceId(const Aws::String& value) { m_referenceIdHasBeenSet = true; m_referenceId = value; }
74 inline void SetReferenceId(Aws::String&& value) { m_referenceIdHasBeenSet = true; m_referenceId = std::move(value); }
75 inline void SetReferenceId(const char* value) { m_referenceIdHasBeenSet = true; m_referenceId.assign(value); }
78 inline DeleteApplicationReferenceDataSourceRequest& WithReferenceId(const char* value) { SetReferenceId(value); return *this;}
80 private:
81
82 Aws::String m_applicationName;
83 bool m_applicationNameHasBeenSet = false;
84
85 long long m_currentApplicationVersionId;
86 bool m_currentApplicationVersionIdHasBeenSet = false;
87
88 Aws::String m_referenceId;
89 bool m_referenceIdHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace KinesisAnalyticsV2
94} // namespace Aws
DeleteApplicationReferenceDataSourceRequest & WithApplicationName(Aws::String &&value)
AWS_KINESISANALYTICSV2_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_KINESISANALYTICSV2_API Aws::String SerializePayload() const override
DeleteApplicationReferenceDataSourceRequest & WithReferenceId(const Aws::String &value)
DeleteApplicationReferenceDataSourceRequest & WithCurrentApplicationVersionId(long long value)
DeleteApplicationReferenceDataSourceRequest & WithApplicationName(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String