AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListKeysRequest.h
1
6#pragma once
7#include <aws/payment-cryptography/PaymentCryptography_EXPORTS.h>
8#include <aws/payment-cryptography/PaymentCryptographyRequest.h>
9#include <aws/payment-cryptography/model/KeyState.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace PaymentCryptography
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_PAYMENTCRYPTOGRAPHY_API ListKeysRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ListKeys"; }
32
33 AWS_PAYMENTCRYPTOGRAPHY_API Aws::String SerializePayload() const override;
34
35 AWS_PAYMENTCRYPTOGRAPHY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
42 inline KeyState GetKeyState() const { return m_keyState; }
43 inline bool KeyStateHasBeenSet() const { return m_keyStateHasBeenSet; }
44 inline void SetKeyState(KeyState value) { m_keyStateHasBeenSet = true; m_keyState = value; }
45 inline ListKeysRequest& WithKeyState(KeyState value) { SetKeyState(value); return *this;}
47
49
54 inline const Aws::String& GetNextToken() const { return m_nextToken; }
55 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
56 template<typename NextTokenT = Aws::String>
57 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
58 template<typename NextTokenT = Aws::String>
59 ListKeysRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
61
63
70 inline int GetMaxResults() const { return m_maxResults; }
71 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
72 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
73 inline ListKeysRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
75 private:
76
77 KeyState m_keyState{KeyState::NOT_SET};
78 bool m_keyStateHasBeenSet = false;
79
80 Aws::String m_nextToken;
81 bool m_nextTokenHasBeenSet = false;
82
83 int m_maxResults{0};
84 bool m_maxResultsHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace PaymentCryptography
89} // namespace Aws
virtual const char * GetServiceRequestName() const override
ListKeysRequest & WithKeyState(KeyState value)
ListKeysRequest & WithNextToken(NextTokenT &&value)
AWS_PAYMENTCRYPTOGRAPHY_API Aws::String SerializePayload() const override
AWS_PAYMENTCRYPTOGRAPHY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_PAYMENTCRYPTOGRAPHY_API ListKeysRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String