AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IdentityPoolShortDescription.h
1
6#pragma once
7#include <aws/cognito-identity/CognitoIdentity_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 CognitoIdentity
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_COGNITOIDENTITY_API IdentityPoolShortDescription();
35 AWS_COGNITOIDENTITY_API IdentityPoolShortDescription(Aws::Utils::Json::JsonView jsonValue);
37 AWS_COGNITOIDENTITY_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetIdentityPoolId() const{ return m_identityPoolId; }
45 inline bool IdentityPoolIdHasBeenSet() const { return m_identityPoolIdHasBeenSet; }
46 inline void SetIdentityPoolId(const Aws::String& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = value; }
47 inline void SetIdentityPoolId(Aws::String&& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = std::move(value); }
48 inline void SetIdentityPoolId(const char* value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId.assign(value); }
50 inline IdentityPoolShortDescription& WithIdentityPoolId(Aws::String&& value) { SetIdentityPoolId(std::move(value)); return *this;}
51 inline IdentityPoolShortDescription& WithIdentityPoolId(const char* value) { SetIdentityPoolId(value); return *this;}
53
55
58 inline const Aws::String& GetIdentityPoolName() const{ return m_identityPoolName; }
59 inline bool IdentityPoolNameHasBeenSet() const { return m_identityPoolNameHasBeenSet; }
60 inline void SetIdentityPoolName(const Aws::String& value) { m_identityPoolNameHasBeenSet = true; m_identityPoolName = value; }
61 inline void SetIdentityPoolName(Aws::String&& value) { m_identityPoolNameHasBeenSet = true; m_identityPoolName = std::move(value); }
62 inline void SetIdentityPoolName(const char* value) { m_identityPoolNameHasBeenSet = true; m_identityPoolName.assign(value); }
64 inline IdentityPoolShortDescription& WithIdentityPoolName(Aws::String&& value) { SetIdentityPoolName(std::move(value)); return *this;}
65 inline IdentityPoolShortDescription& WithIdentityPoolName(const char* value) { SetIdentityPoolName(value); return *this;}
67 private:
68
69 Aws::String m_identityPoolId;
70 bool m_identityPoolIdHasBeenSet = false;
71
72 Aws::String m_identityPoolName;
73 bool m_identityPoolNameHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace CognitoIdentity
78} // namespace Aws
IdentityPoolShortDescription & WithIdentityPoolName(Aws::String &&value)
AWS_COGNITOIDENTITY_API IdentityPoolShortDescription(Aws::Utils::Json::JsonView jsonValue)
IdentityPoolShortDescription & WithIdentityPoolId(const char *value)
IdentityPoolShortDescription & WithIdentityPoolId(const Aws::String &value)
IdentityPoolShortDescription & WithIdentityPoolName(const char *value)
IdentityPoolShortDescription & WithIdentityPoolId(Aws::String &&value)
AWS_COGNITOIDENTITY_API IdentityPoolShortDescription & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_COGNITOIDENTITY_API Aws::Utils::Json::JsonValue Jsonize() const
IdentityPoolShortDescription & WithIdentityPoolName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue