AWS SDK for C++

AWS SDK for C++ Version 1.11.688

Loading...
Searching...
No Matches
UpdateWebAppCustomizationRequest.h
1
6#pragma once
7#include <aws/awstransfer/TransferRequest.h>
8#include <aws/awstransfer/Transfer_EXPORTS.h>
9#include <aws/core/utils/Array.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Transfer {
16namespace Model {
17
21 public:
22 AWS_TRANSFER_API UpdateWebAppCustomizationRequest() = 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 "UpdateWebAppCustomization"; }
29
30 AWS_TRANSFER_API Aws::String SerializePayload() const override;
31
33
35
38 inline const Aws::String& GetWebAppId() const { return m_webAppId; }
39 inline bool WebAppIdHasBeenSet() const { return m_webAppIdHasBeenSet; }
40 template <typename WebAppIdT = Aws::String>
41 void SetWebAppId(WebAppIdT&& value) {
42 m_webAppIdHasBeenSet = true;
43 m_webAppId = std::forward<WebAppIdT>(value);
44 }
45 template <typename WebAppIdT = Aws::String>
47 SetWebAppId(std::forward<WebAppIdT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetTitle() const { return m_title; }
57 inline bool TitleHasBeenSet() const { return m_titleHasBeenSet; }
58 template <typename TitleT = Aws::String>
59 void SetTitle(TitleT&& value) {
60 m_titleHasBeenSet = true;
61 m_title = std::forward<TitleT>(value);
62 }
63 template <typename TitleT = Aws::String>
65 SetTitle(std::forward<TitleT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::Utils::CryptoBuffer& GetLogoFile() const { return m_logoFile; }
75 inline bool LogoFileHasBeenSet() const { return m_logoFileHasBeenSet; }
76 template <typename LogoFileT = Aws::Utils::CryptoBuffer>
77 void SetLogoFile(LogoFileT&& value) {
78 m_logoFileHasBeenSet = true;
79 m_logoFile = std::forward<LogoFileT>(value);
80 }
81 template <typename LogoFileT = Aws::Utils::CryptoBuffer>
83 SetLogoFile(std::forward<LogoFileT>(value));
84 return *this;
85 }
87
89
92 inline const Aws::Utils::CryptoBuffer& GetFaviconFile() const { return m_faviconFile; }
93 inline bool FaviconFileHasBeenSet() const { return m_faviconFileHasBeenSet; }
94 template <typename FaviconFileT = Aws::Utils::CryptoBuffer>
95 void SetFaviconFile(FaviconFileT&& value) {
96 m_faviconFileHasBeenSet = true;
97 m_faviconFile = std::forward<FaviconFileT>(value);
98 }
99 template <typename FaviconFileT = Aws::Utils::CryptoBuffer>
101 SetFaviconFile(std::forward<FaviconFileT>(value));
102 return *this;
103 }
105 private:
106 Aws::String m_webAppId;
107 bool m_webAppIdHasBeenSet = false;
108
109 Aws::String m_title;
110 bool m_titleHasBeenSet = false;
111
112 Aws::Utils::CryptoBuffer m_logoFile{};
113 bool m_logoFileHasBeenSet = false;
114
115 Aws::Utils::CryptoBuffer m_faviconFile{};
116 bool m_faviconFileHasBeenSet = false;
117};
118
119} // namespace Model
120} // namespace Transfer
121} // namespace Aws
UpdateWebAppCustomizationRequest & WithLogoFile(LogoFileT &&value)
AWS_TRANSFER_API Aws::String SerializePayload() const override
UpdateWebAppCustomizationRequest & WithTitle(TitleT &&value)
AWS_TRANSFER_API UpdateWebAppCustomizationRequest()=default
UpdateWebAppCustomizationRequest & WithFaviconFile(FaviconFileT &&value)
UpdateWebAppCustomizationRequest & WithWebAppId(WebAppIdT &&value)
AWS_TRANSFER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String