AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
UpdateWebAppCustomizationRequest.h
1
6#pragma once
7#include <aws/awstransfer/Transfer_EXPORTS.h>
8#include <aws/awstransfer/TransferRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/Array.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Transfer
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_TRANSFER_API UpdateWebAppCustomizationRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateWebAppCustomization"; }
32
33 AWS_TRANSFER_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetWebAppId() const { return m_webAppId; }
43 inline bool WebAppIdHasBeenSet() const { return m_webAppIdHasBeenSet; }
44 template<typename WebAppIdT = Aws::String>
45 void SetWebAppId(WebAppIdT&& value) { m_webAppIdHasBeenSet = true; m_webAppId = std::forward<WebAppIdT>(value); }
46 template<typename WebAppIdT = Aws::String>
47 UpdateWebAppCustomizationRequest& WithWebAppId(WebAppIdT&& value) { SetWebAppId(std::forward<WebAppIdT>(value)); return *this;}
49
51
54 inline const Aws::String& GetTitle() const { return m_title; }
55 inline bool TitleHasBeenSet() const { return m_titleHasBeenSet; }
56 template<typename TitleT = Aws::String>
57 void SetTitle(TitleT&& value) { m_titleHasBeenSet = true; m_title = std::forward<TitleT>(value); }
58 template<typename TitleT = Aws::String>
59 UpdateWebAppCustomizationRequest& WithTitle(TitleT&& value) { SetTitle(std::forward<TitleT>(value)); return *this;}
61
63
66 inline const Aws::Utils::CryptoBuffer& GetLogoFile() const { return m_logoFile; }
67 inline bool LogoFileHasBeenSet() const { return m_logoFileHasBeenSet; }
68 template<typename LogoFileT = Aws::Utils::CryptoBuffer>
69 void SetLogoFile(LogoFileT&& value) { m_logoFileHasBeenSet = true; m_logoFile = std::forward<LogoFileT>(value); }
70 template<typename LogoFileT = Aws::Utils::CryptoBuffer>
71 UpdateWebAppCustomizationRequest& WithLogoFile(LogoFileT&& value) { SetLogoFile(std::forward<LogoFileT>(value)); return *this;}
73
75
78 inline const Aws::Utils::CryptoBuffer& GetFaviconFile() const { return m_faviconFile; }
79 inline bool FaviconFileHasBeenSet() const { return m_faviconFileHasBeenSet; }
80 template<typename FaviconFileT = Aws::Utils::CryptoBuffer>
81 void SetFaviconFile(FaviconFileT&& value) { m_faviconFileHasBeenSet = true; m_faviconFile = std::forward<FaviconFileT>(value); }
82 template<typename FaviconFileT = Aws::Utils::CryptoBuffer>
83 UpdateWebAppCustomizationRequest& WithFaviconFile(FaviconFileT&& value) { SetFaviconFile(std::forward<FaviconFileT>(value)); return *this;}
85 private:
86
87 Aws::String m_webAppId;
88 bool m_webAppIdHasBeenSet = false;
89
90 Aws::String m_title;
91 bool m_titleHasBeenSet = false;
92
93 Aws::Utils::CryptoBuffer m_logoFile{};
94 bool m_logoFileHasBeenSet = false;
95
96 Aws::Utils::CryptoBuffer m_faviconFile{};
97 bool m_faviconFileHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace Transfer
102} // 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