AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
CreateApiKeyRequest.h
1
6#pragma once
7#include <aws/appsync/AppSyncRequest.h>
8#include <aws/appsync/AppSync_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace AppSync {
15namespace Model {
16
20 public:
21 AWS_APPSYNC_API CreateApiKeyRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "CreateApiKey"; }
28
29 AWS_APPSYNC_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetApiId() const { return m_apiId; }
36 inline bool ApiIdHasBeenSet() const { return m_apiIdHasBeenSet; }
37 template <typename ApiIdT = Aws::String>
38 void SetApiId(ApiIdT&& value) {
39 m_apiIdHasBeenSet = true;
40 m_apiId = std::forward<ApiIdT>(value);
41 }
42 template <typename ApiIdT = Aws::String>
43 CreateApiKeyRequest& WithApiId(ApiIdT&& value) {
44 SetApiId(std::forward<ApiIdT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetDescription() const { return m_description; }
54 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
55 template <typename DescriptionT = Aws::String>
56 void SetDescription(DescriptionT&& value) {
57 m_descriptionHasBeenSet = true;
58 m_description = std::forward<DescriptionT>(value);
59 }
60 template <typename DescriptionT = Aws::String>
61 CreateApiKeyRequest& WithDescription(DescriptionT&& value) {
62 SetDescription(std::forward<DescriptionT>(value));
63 return *this;
64 }
66
68
74 inline long long GetExpires() const { return m_expires; }
75 inline bool ExpiresHasBeenSet() const { return m_expiresHasBeenSet; }
76 inline void SetExpires(long long value) {
77 m_expiresHasBeenSet = true;
78 m_expires = value;
79 }
80 inline CreateApiKeyRequest& WithExpires(long long value) {
81 SetExpires(value);
82 return *this;
83 }
85 private:
86 Aws::String m_apiId;
87
88 Aws::String m_description;
89
90 long long m_expires{0};
91 bool m_apiIdHasBeenSet = false;
92 bool m_descriptionHasBeenSet = false;
93 bool m_expiresHasBeenSet = false;
94};
95
96} // namespace Model
97} // namespace AppSync
98} // namespace Aws
CreateApiKeyRequest & WithExpires(long long value)
CreateApiKeyRequest & WithApiId(ApiIdT &&value)
CreateApiKeyRequest & WithDescription(DescriptionT &&value)
virtual const char * GetServiceRequestName() const override
AWS_APPSYNC_API CreateApiKeyRequest()=default
AWS_APPSYNC_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String