AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
SuperuserParameters.h
1
6#pragma once
7#include <aws/finspace/Finspace_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace finspace
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_FINSPACE_API SuperuserParameters() = default;
37 AWS_FINSPACE_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetEmailAddress() const { return m_emailAddress; }
45 inline bool EmailAddressHasBeenSet() const { return m_emailAddressHasBeenSet; }
46 template<typename EmailAddressT = Aws::String>
47 void SetEmailAddress(EmailAddressT&& value) { m_emailAddressHasBeenSet = true; m_emailAddress = std::forward<EmailAddressT>(value); }
48 template<typename EmailAddressT = Aws::String>
49 SuperuserParameters& WithEmailAddress(EmailAddressT&& value) { SetEmailAddress(std::forward<EmailAddressT>(value)); return *this;}
51
53
56 inline const Aws::String& GetFirstName() const { return m_firstName; }
57 inline bool FirstNameHasBeenSet() const { return m_firstNameHasBeenSet; }
58 template<typename FirstNameT = Aws::String>
59 void SetFirstName(FirstNameT&& value) { m_firstNameHasBeenSet = true; m_firstName = std::forward<FirstNameT>(value); }
60 template<typename FirstNameT = Aws::String>
61 SuperuserParameters& WithFirstName(FirstNameT&& value) { SetFirstName(std::forward<FirstNameT>(value)); return *this;}
63
65
68 inline const Aws::String& GetLastName() const { return m_lastName; }
69 inline bool LastNameHasBeenSet() const { return m_lastNameHasBeenSet; }
70 template<typename LastNameT = Aws::String>
71 void SetLastName(LastNameT&& value) { m_lastNameHasBeenSet = true; m_lastName = std::forward<LastNameT>(value); }
72 template<typename LastNameT = Aws::String>
73 SuperuserParameters& WithLastName(LastNameT&& value) { SetLastName(std::forward<LastNameT>(value)); return *this;}
75 private:
76
77 Aws::String m_emailAddress;
78 bool m_emailAddressHasBeenSet = false;
79
80 Aws::String m_firstName;
81 bool m_firstNameHasBeenSet = false;
82
83 Aws::String m_lastName;
84 bool m_lastNameHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace finspace
89} // namespace Aws
AWS_FINSPACE_API SuperuserParameters()=default
SuperuserParameters & WithFirstName(FirstNameT &&value)
AWS_FINSPACE_API SuperuserParameters(Aws::Utils::Json::JsonView jsonValue)
SuperuserParameters & WithEmailAddress(EmailAddressT &&value)
SuperuserParameters & WithLastName(LastNameT &&value)
AWS_FINSPACE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_FINSPACE_API SuperuserParameters & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue