AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
InviteUsersRequest.h
1
6#pragma once
7#include <aws/chime/Chime_EXPORTS.h>
8#include <aws/chime/ChimeRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/chime/model/UserType.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Chime
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CHIME_API InviteUsersRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "InviteUsers"; }
33
34 AWS_CHIME_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetAccountId() const{ return m_accountId; }
42 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
43 inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
44 inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
45 inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
46 inline InviteUsersRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
47 inline InviteUsersRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
48 inline InviteUsersRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
50
52
55 inline const Aws::Vector<Aws::String>& GetUserEmailList() const{ return m_userEmailList; }
56 inline bool UserEmailListHasBeenSet() const { return m_userEmailListHasBeenSet; }
57 inline void SetUserEmailList(const Aws::Vector<Aws::String>& value) { m_userEmailListHasBeenSet = true; m_userEmailList = value; }
58 inline void SetUserEmailList(Aws::Vector<Aws::String>&& value) { m_userEmailListHasBeenSet = true; m_userEmailList = std::move(value); }
60 inline InviteUsersRequest& WithUserEmailList(Aws::Vector<Aws::String>&& value) { SetUserEmailList(std::move(value)); return *this;}
61 inline InviteUsersRequest& AddUserEmailList(const Aws::String& value) { m_userEmailListHasBeenSet = true; m_userEmailList.push_back(value); return *this; }
62 inline InviteUsersRequest& AddUserEmailList(Aws::String&& value) { m_userEmailListHasBeenSet = true; m_userEmailList.push_back(std::move(value)); return *this; }
63 inline InviteUsersRequest& AddUserEmailList(const char* value) { m_userEmailListHasBeenSet = true; m_userEmailList.push_back(value); return *this; }
65
67
70 inline const UserType& GetUserType() const{ return m_userType; }
71 inline bool UserTypeHasBeenSet() const { return m_userTypeHasBeenSet; }
72 inline void SetUserType(const UserType& value) { m_userTypeHasBeenSet = true; m_userType = value; }
73 inline void SetUserType(UserType&& value) { m_userTypeHasBeenSet = true; m_userType = std::move(value); }
74 inline InviteUsersRequest& WithUserType(const UserType& value) { SetUserType(value); return *this;}
75 inline InviteUsersRequest& WithUserType(UserType&& value) { SetUserType(std::move(value)); return *this;}
77 private:
78
79 Aws::String m_accountId;
80 bool m_accountIdHasBeenSet = false;
81
82 Aws::Vector<Aws::String> m_userEmailList;
83 bool m_userEmailListHasBeenSet = false;
84
85 UserType m_userType;
86 bool m_userTypeHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace Chime
91} // namespace Aws
InviteUsersRequest & WithUserEmailList(const Aws::Vector< Aws::String > &value)
InviteUsersRequest & AddUserEmailList(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
AWS_CHIME_API Aws::String SerializePayload() const override
InviteUsersRequest & WithAccountId(const Aws::String &value)
void SetUserEmailList(Aws::Vector< Aws::String > &&value)
InviteUsersRequest & WithUserEmailList(Aws::Vector< Aws::String > &&value)
const Aws::String & GetAccountId() const
void SetUserType(const UserType &value)
InviteUsersRequest & WithAccountId(Aws::String &&value)
void SetUserEmailList(const Aws::Vector< Aws::String > &value)
InviteUsersRequest & AddUserEmailList(const char *value)
InviteUsersRequest & WithAccountId(const char *value)
InviteUsersRequest & WithUserType(UserType &&value)
InviteUsersRequest & WithUserType(const UserType &value)
void SetAccountId(const Aws::String &value)
InviteUsersRequest & AddUserEmailList(const Aws::String &value)
const Aws::Vector< Aws::String > & GetUserEmailList() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector