AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetRoleCredentialsRequest.h
1
6#pragma once
7#include <aws/sso/SSO_EXPORTS.h>
8#include <aws/sso/SSORequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace SSO
19{
20namespace Model
21{
22
26 {
27 public:
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetRoleCredentials"; }
35
36 AWS_SSO_API Aws::String SerializePayload() const override;
37
38 AWS_SSO_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
41
42
44
47 inline const Aws::String& GetRoleName() const{ return m_roleName; }
48 inline bool RoleNameHasBeenSet() const { return m_roleNameHasBeenSet; }
49 inline void SetRoleName(const Aws::String& value) { m_roleNameHasBeenSet = true; m_roleName = value; }
50 inline void SetRoleName(Aws::String&& value) { m_roleNameHasBeenSet = true; m_roleName = std::move(value); }
51 inline void SetRoleName(const char* value) { m_roleNameHasBeenSet = true; m_roleName.assign(value); }
52 inline GetRoleCredentialsRequest& WithRoleName(const Aws::String& value) { SetRoleName(value); return *this;}
53 inline GetRoleCredentialsRequest& WithRoleName(Aws::String&& value) { SetRoleName(std::move(value)); return *this;}
54 inline GetRoleCredentialsRequest& WithRoleName(const char* value) { SetRoleName(value); return *this;}
56
58
61 inline const Aws::String& GetAccountId() const{ return m_accountId; }
62 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
63 inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
64 inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
65 inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
66 inline GetRoleCredentialsRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
67 inline GetRoleCredentialsRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
68 inline GetRoleCredentialsRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
70
72
78 inline const Aws::String& GetAccessToken() const{ return m_accessToken; }
79 inline bool AccessTokenHasBeenSet() const { return m_accessTokenHasBeenSet; }
80 inline void SetAccessToken(const Aws::String& value) { m_accessTokenHasBeenSet = true; m_accessToken = value; }
81 inline void SetAccessToken(Aws::String&& value) { m_accessTokenHasBeenSet = true; m_accessToken = std::move(value); }
82 inline void SetAccessToken(const char* value) { m_accessTokenHasBeenSet = true; m_accessToken.assign(value); }
83 inline GetRoleCredentialsRequest& WithAccessToken(const Aws::String& value) { SetAccessToken(value); return *this;}
84 inline GetRoleCredentialsRequest& WithAccessToken(Aws::String&& value) { SetAccessToken(std::move(value)); return *this;}
85 inline GetRoleCredentialsRequest& WithAccessToken(const char* value) { SetAccessToken(value); return *this;}
87 private:
88
89 Aws::String m_roleName;
90 bool m_roleNameHasBeenSet = false;
91
92 Aws::String m_accountId;
93 bool m_accountIdHasBeenSet = false;
94
95 Aws::String m_accessToken;
96 bool m_accessTokenHasBeenSet = false;
97 };
98
99} // namespace Model
100} // namespace SSO
101} // namespace Aws
GetRoleCredentialsRequest & WithAccountId(const Aws::String &value)
AWS_SSO_API Aws::String SerializePayload() const override
GetRoleCredentialsRequest & WithAccessToken(const Aws::String &value)
GetRoleCredentialsRequest & WithAccountId(Aws::String &&value)
GetRoleCredentialsRequest & WithRoleName(const Aws::String &value)
AWS_SSO_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetRoleCredentialsRequest & WithAccessToken(const char *value)
GetRoleCredentialsRequest & WithAccountId(const char *value)
AWS_SSO_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetRoleCredentialsRequest & WithAccessToken(Aws::String &&value)
GetRoleCredentialsRequest & WithRoleName(const char *value)
virtual const char * GetServiceRequestName() const override
GetRoleCredentialsRequest & WithRoleName(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String