AWS SDK for C++

AWS SDK for C++ Version 1.11.756

Loading...
Searching...
No Matches
SetUICustomizationRequest.h
1
6#pragma once
7#include <aws/cognito-idp/CognitoIdentityProviderRequest.h>
8#include <aws/cognito-idp/CognitoIdentityProvider_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 CognitoIdentityProvider {
16namespace Model {
17
21 public:
22 AWS_COGNITOIDENTITYPROVIDER_API SetUICustomizationRequest() = 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 "SetUICustomization"; }
29
30 AWS_COGNITOIDENTITYPROVIDER_API Aws::String SerializePayload() const override;
31
32 AWS_COGNITOIDENTITYPROVIDER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
33
35
39 inline const Aws::String& GetUserPoolId() const { return m_userPoolId; }
40 inline bool UserPoolIdHasBeenSet() const { return m_userPoolIdHasBeenSet; }
41 template <typename UserPoolIdT = Aws::String>
42 void SetUserPoolId(UserPoolIdT&& value) {
43 m_userPoolIdHasBeenSet = true;
44 m_userPoolId = std::forward<UserPoolIdT>(value);
45 }
46 template <typename UserPoolIdT = Aws::String>
48 SetUserPoolId(std::forward<UserPoolIdT>(value));
49 return *this;
50 }
52
54
59 inline const Aws::String& GetClientId() const { return m_clientId; }
60 inline bool ClientIdHasBeenSet() const { return m_clientIdHasBeenSet; }
61 template <typename ClientIdT = Aws::String>
62 void SetClientId(ClientIdT&& value) {
63 m_clientIdHasBeenSet = true;
64 m_clientId = std::forward<ClientIdT>(value);
65 }
66 template <typename ClientIdT = Aws::String>
68 SetClientId(std::forward<ClientIdT>(value));
69 return *this;
70 }
72
74
81 inline const Aws::String& GetCSS() const { return m_cSS; }
82 inline bool CSSHasBeenSet() const { return m_cSSHasBeenSet; }
83 template <typename CSST = Aws::String>
84 void SetCSS(CSST&& value) {
85 m_cSSHasBeenSet = true;
86 m_cSS = std::forward<CSST>(value);
87 }
88 template <typename CSST = Aws::String>
90 SetCSS(std::forward<CSST>(value));
91 return *this;
92 }
94
96
100 inline const Aws::Utils::ByteBuffer& GetImageFile() const { return m_imageFile; }
101 inline bool ImageFileHasBeenSet() const { return m_imageFileHasBeenSet; }
102 template <typename ImageFileT = Aws::Utils::ByteBuffer>
103 void SetImageFile(ImageFileT&& value) {
104 m_imageFileHasBeenSet = true;
105 m_imageFile = std::forward<ImageFileT>(value);
106 }
107 template <typename ImageFileT = Aws::Utils::ByteBuffer>
109 SetImageFile(std::forward<ImageFileT>(value));
110 return *this;
111 }
113 private:
114 Aws::String m_userPoolId;
115
116 Aws::String m_clientId;
117
118 Aws::String m_cSS;
119
120 Aws::Utils::ByteBuffer m_imageFile{};
121 bool m_userPoolIdHasBeenSet = false;
122 bool m_clientIdHasBeenSet = false;
123 bool m_cSSHasBeenSet = false;
124 bool m_imageFileHasBeenSet = false;
125};
126
127} // namespace Model
128} // namespace CognitoIdentityProvider
129} // namespace Aws
AWS_COGNITOIDENTITYPROVIDER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_COGNITOIDENTITYPROVIDER_API Aws::String SerializePayload() const override
AWS_COGNITOIDENTITYPROVIDER_API SetUICustomizationRequest()=default
SetUICustomizationRequest & WithImageFile(ImageFileT &&value)
SetUICustomizationRequest & WithUserPoolId(UserPoolIdT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String