AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
SetUICustomizationRequest.h
1
6#pragma once
7#include <aws/cognito-idp/CognitoIdentityProvider_EXPORTS.h>
8#include <aws/cognito-idp/CognitoIdentityProviderRequest.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 CognitoIdentityProvider
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_COGNITOIDENTITYPROVIDER_API SetUICustomizationRequest() = 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 "SetUICustomization"; }
32
33 AWS_COGNITOIDENTITYPROVIDER_API Aws::String SerializePayload() const override;
34
35 AWS_COGNITOIDENTITYPROVIDER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
43 inline const Aws::String& GetUserPoolId() const { return m_userPoolId; }
44 inline bool UserPoolIdHasBeenSet() const { return m_userPoolIdHasBeenSet; }
45 template<typename UserPoolIdT = Aws::String>
46 void SetUserPoolId(UserPoolIdT&& value) { m_userPoolIdHasBeenSet = true; m_userPoolId = std::forward<UserPoolIdT>(value); }
47 template<typename UserPoolIdT = Aws::String>
48 SetUICustomizationRequest& WithUserPoolId(UserPoolIdT&& value) { SetUserPoolId(std::forward<UserPoolIdT>(value)); return *this;}
50
52
57 inline const Aws::String& GetClientId() const { return m_clientId; }
58 inline bool ClientIdHasBeenSet() const { return m_clientIdHasBeenSet; }
59 template<typename ClientIdT = Aws::String>
60 void SetClientId(ClientIdT&& value) { m_clientIdHasBeenSet = true; m_clientId = std::forward<ClientIdT>(value); }
61 template<typename ClientIdT = Aws::String>
62 SetUICustomizationRequest& WithClientId(ClientIdT&& value) { SetClientId(std::forward<ClientIdT>(value)); return *this;}
64
66
73 inline const Aws::String& GetCSS() const { return m_cSS; }
74 inline bool CSSHasBeenSet() const { return m_cSSHasBeenSet; }
75 template<typename CSST = Aws::String>
76 void SetCSS(CSST&& value) { m_cSSHasBeenSet = true; m_cSS = std::forward<CSST>(value); }
77 template<typename CSST = Aws::String>
78 SetUICustomizationRequest& WithCSS(CSST&& value) { SetCSS(std::forward<CSST>(value)); return *this;}
80
82
86 inline const Aws::Utils::ByteBuffer& GetImageFile() const { return m_imageFile; }
87 inline bool ImageFileHasBeenSet() const { return m_imageFileHasBeenSet; }
88 template<typename ImageFileT = Aws::Utils::ByteBuffer>
89 void SetImageFile(ImageFileT&& value) { m_imageFileHasBeenSet = true; m_imageFile = std::forward<ImageFileT>(value); }
90 template<typename ImageFileT = Aws::Utils::ByteBuffer>
91 SetUICustomizationRequest& WithImageFile(ImageFileT&& value) { SetImageFile(std::forward<ImageFileT>(value)); return *this;}
93 private:
94
95 Aws::String m_userPoolId;
96 bool m_userPoolIdHasBeenSet = false;
97
98 Aws::String m_clientId;
99 bool m_clientIdHasBeenSet = false;
100
101 Aws::String m_cSS;
102 bool m_cSSHasBeenSet = false;
103
104 Aws::Utils::ByteBuffer m_imageFile{};
105 bool m_imageFileHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace CognitoIdentityProvider
110} // 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