AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
UpdateIngestionDestinationRequest.h
1
6#pragma once
7#include <aws/appfabric/AppFabricRequest.h>
8#include <aws/appfabric/AppFabric_EXPORTS.h>
9#include <aws/appfabric/model/DestinationConfiguration.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11
12#include <utility>
13
14namespace Aws {
15namespace AppFabric {
16namespace Model {
17
21 public:
22 AWS_APPFABRIC_API UpdateIngestionDestinationRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "UpdateIngestionDestination"; }
29
30 AWS_APPFABRIC_API Aws::String SerializePayload() const override;
31
33
37 inline const Aws::String& GetAppBundleIdentifier() const { return m_appBundleIdentifier; }
38 inline bool AppBundleIdentifierHasBeenSet() const { return m_appBundleIdentifierHasBeenSet; }
39 template <typename AppBundleIdentifierT = Aws::String>
40 void SetAppBundleIdentifier(AppBundleIdentifierT&& value) {
41 m_appBundleIdentifierHasBeenSet = true;
42 m_appBundleIdentifier = std::forward<AppBundleIdentifierT>(value);
43 }
44 template <typename AppBundleIdentifierT = Aws::String>
46 SetAppBundleIdentifier(std::forward<AppBundleIdentifierT>(value));
47 return *this;
48 }
50
52
56 inline const Aws::String& GetIngestionIdentifier() const { return m_ingestionIdentifier; }
57 inline bool IngestionIdentifierHasBeenSet() const { return m_ingestionIdentifierHasBeenSet; }
58 template <typename IngestionIdentifierT = Aws::String>
59 void SetIngestionIdentifier(IngestionIdentifierT&& value) {
60 m_ingestionIdentifierHasBeenSet = true;
61 m_ingestionIdentifier = std::forward<IngestionIdentifierT>(value);
62 }
63 template <typename IngestionIdentifierT = Aws::String>
65 SetIngestionIdentifier(std::forward<IngestionIdentifierT>(value));
66 return *this;
67 }
69
71
75 inline const Aws::String& GetIngestionDestinationIdentifier() const { return m_ingestionDestinationIdentifier; }
76 inline bool IngestionDestinationIdentifierHasBeenSet() const { return m_ingestionDestinationIdentifierHasBeenSet; }
77 template <typename IngestionDestinationIdentifierT = Aws::String>
78 void SetIngestionDestinationIdentifier(IngestionDestinationIdentifierT&& value) {
79 m_ingestionDestinationIdentifierHasBeenSet = true;
80 m_ingestionDestinationIdentifier = std::forward<IngestionDestinationIdentifierT>(value);
81 }
82 template <typename IngestionDestinationIdentifierT = Aws::String>
84 SetIngestionDestinationIdentifier(std::forward<IngestionDestinationIdentifierT>(value));
85 return *this;
86 }
88
90
93 inline const DestinationConfiguration& GetDestinationConfiguration() const { return m_destinationConfiguration; }
94 inline bool DestinationConfigurationHasBeenSet() const { return m_destinationConfigurationHasBeenSet; }
95 template <typename DestinationConfigurationT = DestinationConfiguration>
96 void SetDestinationConfiguration(DestinationConfigurationT&& value) {
97 m_destinationConfigurationHasBeenSet = true;
98 m_destinationConfiguration = std::forward<DestinationConfigurationT>(value);
99 }
100 template <typename DestinationConfigurationT = DestinationConfiguration>
102 SetDestinationConfiguration(std::forward<DestinationConfigurationT>(value));
103 return *this;
104 }
106 private:
107 Aws::String m_appBundleIdentifier;
108
109 Aws::String m_ingestionIdentifier;
110
111 Aws::String m_ingestionDestinationIdentifier;
112
113 DestinationConfiguration m_destinationConfiguration;
114 bool m_appBundleIdentifierHasBeenSet = false;
115 bool m_ingestionIdentifierHasBeenSet = false;
116 bool m_ingestionDestinationIdentifierHasBeenSet = false;
117 bool m_destinationConfigurationHasBeenSet = false;
118};
119
120} // namespace Model
121} // namespace AppFabric
122} // namespace Aws
AWS_APPFABRIC_API UpdateIngestionDestinationRequest()=default
void SetIngestionDestinationIdentifier(IngestionDestinationIdentifierT &&value)
UpdateIngestionDestinationRequest & WithIngestionDestinationIdentifier(IngestionDestinationIdentifierT &&value)
AWS_APPFABRIC_API Aws::String SerializePayload() const override
UpdateIngestionDestinationRequest & WithDestinationConfiguration(DestinationConfigurationT &&value)
UpdateIngestionDestinationRequest & WithAppBundleIdentifier(AppBundleIdentifierT &&value)
UpdateIngestionDestinationRequest & WithIngestionIdentifier(IngestionIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String