AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateBackendAuthIdentityPoolConfig.h
1
6#pragma once
7#include <aws/amplifybackend/AmplifyBackend_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace AmplifyBackend
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_AMPLIFYBACKEND_API CreateBackendAuthIdentityPoolConfig();
38 AWS_AMPLIFYBACKEND_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetIdentityPoolName() const{ return m_identityPoolName; }
46 inline bool IdentityPoolNameHasBeenSet() const { return m_identityPoolNameHasBeenSet; }
47 inline void SetIdentityPoolName(const Aws::String& value) { m_identityPoolNameHasBeenSet = true; m_identityPoolName = value; }
48 inline void SetIdentityPoolName(Aws::String&& value) { m_identityPoolNameHasBeenSet = true; m_identityPoolName = std::move(value); }
49 inline void SetIdentityPoolName(const char* value) { m_identityPoolNameHasBeenSet = true; m_identityPoolName.assign(value); }
52 inline CreateBackendAuthIdentityPoolConfig& WithIdentityPoolName(const char* value) { SetIdentityPoolName(value); return *this;}
54
56
60 inline bool GetUnauthenticatedLogin() const{ return m_unauthenticatedLogin; }
61 inline bool UnauthenticatedLoginHasBeenSet() const { return m_unauthenticatedLoginHasBeenSet; }
62 inline void SetUnauthenticatedLogin(bool value) { m_unauthenticatedLoginHasBeenSet = true; m_unauthenticatedLogin = value; }
65 private:
66
67 Aws::String m_identityPoolName;
68 bool m_identityPoolNameHasBeenSet = false;
69
70 bool m_unauthenticatedLogin;
71 bool m_unauthenticatedLoginHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace AmplifyBackend
76} // namespace Aws
AWS_AMPLIFYBACKEND_API CreateBackendAuthIdentityPoolConfig(Aws::Utils::Json::JsonView jsonValue)
CreateBackendAuthIdentityPoolConfig & WithIdentityPoolName(const Aws::String &value)
AWS_AMPLIFYBACKEND_API CreateBackendAuthIdentityPoolConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
CreateBackendAuthIdentityPoolConfig & WithIdentityPoolName(const char *value)
AWS_AMPLIFYBACKEND_API Aws::Utils::Json::JsonValue Jsonize() const
CreateBackendAuthIdentityPoolConfig & WithIdentityPoolName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue