AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeUserRequest.h
1
6#pragma once
7#include <aws/identitystore/IdentityStore_EXPORTS.h>
8#include <aws/identitystore/IdentityStoreRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace IdentityStore
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_IDENTITYSTORE_API DescribeUserRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeUser"; }
31
32 AWS_IDENTITYSTORE_API Aws::String SerializePayload() const override;
33
34 AWS_IDENTITYSTORE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
45 inline const Aws::String& GetIdentityStoreId() const{ return m_identityStoreId; }
46 inline bool IdentityStoreIdHasBeenSet() const { return m_identityStoreIdHasBeenSet; }
47 inline void SetIdentityStoreId(const Aws::String& value) { m_identityStoreIdHasBeenSet = true; m_identityStoreId = value; }
48 inline void SetIdentityStoreId(Aws::String&& value) { m_identityStoreIdHasBeenSet = true; m_identityStoreId = std::move(value); }
49 inline void SetIdentityStoreId(const char* value) { m_identityStoreIdHasBeenSet = true; m_identityStoreId.assign(value); }
50 inline DescribeUserRequest& WithIdentityStoreId(const Aws::String& value) { SetIdentityStoreId(value); return *this;}
51 inline DescribeUserRequest& WithIdentityStoreId(Aws::String&& value) { SetIdentityStoreId(std::move(value)); return *this;}
52 inline DescribeUserRequest& WithIdentityStoreId(const char* value) { SetIdentityStoreId(value); return *this;}
54
56
59 inline const Aws::String& GetUserId() const{ return m_userId; }
60 inline bool UserIdHasBeenSet() const { return m_userIdHasBeenSet; }
61 inline void SetUserId(const Aws::String& value) { m_userIdHasBeenSet = true; m_userId = value; }
62 inline void SetUserId(Aws::String&& value) { m_userIdHasBeenSet = true; m_userId = std::move(value); }
63 inline void SetUserId(const char* value) { m_userIdHasBeenSet = true; m_userId.assign(value); }
64 inline DescribeUserRequest& WithUserId(const Aws::String& value) { SetUserId(value); return *this;}
65 inline DescribeUserRequest& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;}
66 inline DescribeUserRequest& WithUserId(const char* value) { SetUserId(value); return *this;}
68 private:
69
70 Aws::String m_identityStoreId;
71 bool m_identityStoreIdHasBeenSet = false;
72
73 Aws::String m_userId;
74 bool m_userIdHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace IdentityStore
79} // namespace Aws
AWS_IDENTITYSTORE_API Aws::String SerializePayload() const override
DescribeUserRequest & WithIdentityStoreId(Aws::String &&value)
DescribeUserRequest & WithIdentityStoreId(const char *value)
DescribeUserRequest & WithUserId(Aws::String &&value)
DescribeUserRequest & WithUserId(const Aws::String &value)
AWS_IDENTITYSTORE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeUserRequest & WithIdentityStoreId(const Aws::String &value)
void SetIdentityStoreId(const Aws::String &value)
DescribeUserRequest & WithUserId(const char *value)
virtual const char * GetServiceRequestName() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String