AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateAccessTokenRequest.h
1
6#pragma once
7#include <aws/codecatalyst/CodeCatalyst_EXPORTS.h>
8#include <aws/codecatalyst/CodeCatalystRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CodeCatalyst
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CODECATALYST_API CreateAccessTokenRequest();
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 "CreateAccessToken"; }
32
33 AWS_CODECATALYST_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetName() const{ return m_name; }
41 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
42 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
43 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
44 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
45 inline CreateAccessTokenRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
46 inline CreateAccessTokenRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
47 inline CreateAccessTokenRequest& WithName(const char* value) { SetName(value); return *this;}
49
51
56 inline const Aws::Utils::DateTime& GetExpiresTime() const{ return m_expiresTime; }
57 inline bool ExpiresTimeHasBeenSet() const { return m_expiresTimeHasBeenSet; }
58 inline void SetExpiresTime(const Aws::Utils::DateTime& value) { m_expiresTimeHasBeenSet = true; m_expiresTime = value; }
59 inline void SetExpiresTime(Aws::Utils::DateTime&& value) { m_expiresTimeHasBeenSet = true; m_expiresTime = std::move(value); }
60 inline CreateAccessTokenRequest& WithExpiresTime(const Aws::Utils::DateTime& value) { SetExpiresTime(value); return *this;}
61 inline CreateAccessTokenRequest& WithExpiresTime(Aws::Utils::DateTime&& value) { SetExpiresTime(std::move(value)); return *this;}
63 private:
64
65 Aws::String m_name;
66 bool m_nameHasBeenSet = false;
67
68 Aws::Utils::DateTime m_expiresTime;
69 bool m_expiresTimeHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace CodeCatalyst
74} // namespace Aws
CreateAccessTokenRequest & WithExpiresTime(Aws::Utils::DateTime &&value)
void SetExpiresTime(const Aws::Utils::DateTime &value)
CreateAccessTokenRequest & WithName(Aws::String &&value)
CreateAccessTokenRequest & WithName(const char *value)
CreateAccessTokenRequest & WithExpiresTime(const Aws::Utils::DateTime &value)
virtual const char * GetServiceRequestName() const override
CreateAccessTokenRequest & WithName(const Aws::String &value)
AWS_CODECATALYST_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String