AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetIdentitySourceRequest.h
1
6#pragma once
7#include <aws/verifiedpermissions/VerifiedPermissions_EXPORTS.h>
8#include <aws/verifiedpermissions/VerifiedPermissionsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace VerifiedPermissions
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_VERIFIEDPERMISSIONS_API GetIdentitySourceRequest();
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 "GetIdentitySource"; }
31
32 AWS_VERIFIEDPERMISSIONS_API Aws::String SerializePayload() const override;
33
34 AWS_VERIFIEDPERMISSIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
42 inline const Aws::String& GetPolicyStoreId() const{ return m_policyStoreId; }
43 inline bool PolicyStoreIdHasBeenSet() const { return m_policyStoreIdHasBeenSet; }
44 inline void SetPolicyStoreId(const Aws::String& value) { m_policyStoreIdHasBeenSet = true; m_policyStoreId = value; }
45 inline void SetPolicyStoreId(Aws::String&& value) { m_policyStoreIdHasBeenSet = true; m_policyStoreId = std::move(value); }
46 inline void SetPolicyStoreId(const char* value) { m_policyStoreIdHasBeenSet = true; m_policyStoreId.assign(value); }
47 inline GetIdentitySourceRequest& WithPolicyStoreId(const Aws::String& value) { SetPolicyStoreId(value); return *this;}
48 inline GetIdentitySourceRequest& WithPolicyStoreId(Aws::String&& value) { SetPolicyStoreId(std::move(value)); return *this;}
49 inline GetIdentitySourceRequest& WithPolicyStoreId(const char* value) { SetPolicyStoreId(value); return *this;}
51
53
56 inline const Aws::String& GetIdentitySourceId() const{ return m_identitySourceId; }
57 inline bool IdentitySourceIdHasBeenSet() const { return m_identitySourceIdHasBeenSet; }
58 inline void SetIdentitySourceId(const Aws::String& value) { m_identitySourceIdHasBeenSet = true; m_identitySourceId = value; }
59 inline void SetIdentitySourceId(Aws::String&& value) { m_identitySourceIdHasBeenSet = true; m_identitySourceId = std::move(value); }
60 inline void SetIdentitySourceId(const char* value) { m_identitySourceIdHasBeenSet = true; m_identitySourceId.assign(value); }
62 inline GetIdentitySourceRequest& WithIdentitySourceId(Aws::String&& value) { SetIdentitySourceId(std::move(value)); return *this;}
63 inline GetIdentitySourceRequest& WithIdentitySourceId(const char* value) { SetIdentitySourceId(value); return *this;}
65 private:
66
67 Aws::String m_policyStoreId;
68 bool m_policyStoreIdHasBeenSet = false;
69
70 Aws::String m_identitySourceId;
71 bool m_identitySourceIdHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace VerifiedPermissions
76} // namespace Aws
GetIdentitySourceRequest & WithIdentitySourceId(Aws::String &&value)
AWS_VERIFIEDPERMISSIONS_API Aws::String SerializePayload() const override
GetIdentitySourceRequest & WithIdentitySourceId(const char *value)
GetIdentitySourceRequest & WithPolicyStoreId(const Aws::String &value)
GetIdentitySourceRequest & WithPolicyStoreId(Aws::String &&value)
AWS_VERIFIEDPERMISSIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetIdentitySourceRequest & WithIdentitySourceId(const Aws::String &value)
GetIdentitySourceRequest & WithPolicyStoreId(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String