AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
GetIngestionDestinationRequest.h
1
6#pragma once
7#include <aws/appfabric/AppFabricRequest.h>
8#include <aws/appfabric/AppFabric_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace AppFabric {
15namespace Model {
16
20 public:
21 AWS_APPFABRIC_API GetIngestionDestinationRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "GetIngestionDestination"; }
28
29 AWS_APPFABRIC_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetAppBundleIdentifier() const { return m_appBundleIdentifier; }
37 inline bool AppBundleIdentifierHasBeenSet() const { return m_appBundleIdentifierHasBeenSet; }
38 template <typename AppBundleIdentifierT = Aws::String>
39 void SetAppBundleIdentifier(AppBundleIdentifierT&& value) {
40 m_appBundleIdentifierHasBeenSet = true;
41 m_appBundleIdentifier = std::forward<AppBundleIdentifierT>(value);
42 }
43 template <typename AppBundleIdentifierT = Aws::String>
45 SetAppBundleIdentifier(std::forward<AppBundleIdentifierT>(value));
46 return *this;
47 }
49
51
55 inline const Aws::String& GetIngestionIdentifier() const { return m_ingestionIdentifier; }
56 inline bool IngestionIdentifierHasBeenSet() const { return m_ingestionIdentifierHasBeenSet; }
57 template <typename IngestionIdentifierT = Aws::String>
58 void SetIngestionIdentifier(IngestionIdentifierT&& value) {
59 m_ingestionIdentifierHasBeenSet = true;
60 m_ingestionIdentifier = std::forward<IngestionIdentifierT>(value);
61 }
62 template <typename IngestionIdentifierT = Aws::String>
64 SetIngestionIdentifier(std::forward<IngestionIdentifierT>(value));
65 return *this;
66 }
68
70
74 inline const Aws::String& GetIngestionDestinationIdentifier() const { return m_ingestionDestinationIdentifier; }
75 inline bool IngestionDestinationIdentifierHasBeenSet() const { return m_ingestionDestinationIdentifierHasBeenSet; }
76 template <typename IngestionDestinationIdentifierT = Aws::String>
77 void SetIngestionDestinationIdentifier(IngestionDestinationIdentifierT&& value) {
78 m_ingestionDestinationIdentifierHasBeenSet = true;
79 m_ingestionDestinationIdentifier = std::forward<IngestionDestinationIdentifierT>(value);
80 }
81 template <typename IngestionDestinationIdentifierT = Aws::String>
82 GetIngestionDestinationRequest& WithIngestionDestinationIdentifier(IngestionDestinationIdentifierT&& value) {
83 SetIngestionDestinationIdentifier(std::forward<IngestionDestinationIdentifierT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_appBundleIdentifier;
89
90 Aws::String m_ingestionIdentifier;
91
92 Aws::String m_ingestionDestinationIdentifier;
93 bool m_appBundleIdentifierHasBeenSet = false;
94 bool m_ingestionIdentifierHasBeenSet = false;
95 bool m_ingestionDestinationIdentifierHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace AppFabric
100} // namespace Aws
GetIngestionDestinationRequest & WithAppBundleIdentifier(AppBundleIdentifierT &&value)
AWS_APPFABRIC_API Aws::String SerializePayload() const override
AWS_APPFABRIC_API GetIngestionDestinationRequest()=default
GetIngestionDestinationRequest & WithIngestionIdentifier(IngestionIdentifierT &&value)
void SetIngestionDestinationIdentifier(IngestionDestinationIdentifierT &&value)
GetIngestionDestinationRequest & WithIngestionDestinationIdentifier(IngestionDestinationIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String