/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Chime { namespace Model { /** */ class InviteUsersRequest : public ChimeRequest { public: AWS_CHIME_API InviteUsersRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "InviteUsers"; } AWS_CHIME_API Aws::String SerializePayload() const override; /** *

The Amazon Chime account ID.

*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *

The Amazon Chime account ID.

*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *

The Amazon Chime account ID.

*/ inline InviteUsersRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *

The Amazon Chime account ID.

*/ inline InviteUsersRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *

The Amazon Chime account ID.

*/ inline InviteUsersRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;} /** *

The user email addresses to which to send the email invitation.

*/ inline const Aws::Vector& GetUserEmailList() const{ return m_userEmailList; } /** *

The user email addresses to which to send the email invitation.

*/ inline bool UserEmailListHasBeenSet() const { return m_userEmailListHasBeenSet; } /** *

The user email addresses to which to send the email invitation.

*/ inline void SetUserEmailList(const Aws::Vector& value) { m_userEmailListHasBeenSet = true; m_userEmailList = value; } /** *

The user email addresses to which to send the email invitation.

*/ inline void SetUserEmailList(Aws::Vector&& value) { m_userEmailListHasBeenSet = true; m_userEmailList = std::move(value); } /** *

The user email addresses to which to send the email invitation.

*/ inline InviteUsersRequest& WithUserEmailList(const Aws::Vector& value) { SetUserEmailList(value); return *this;} /** *

The user email addresses to which to send the email invitation.

*/ inline InviteUsersRequest& WithUserEmailList(Aws::Vector&& value) { SetUserEmailList(std::move(value)); return *this;} /** *

The user email addresses to which to send the email invitation.

*/ inline InviteUsersRequest& AddUserEmailList(const Aws::String& value) { m_userEmailListHasBeenSet = true; m_userEmailList.push_back(value); return *this; } /** *

The user email addresses to which to send the email invitation.

*/ inline InviteUsersRequest& AddUserEmailList(Aws::String&& value) { m_userEmailListHasBeenSet = true; m_userEmailList.push_back(std::move(value)); return *this; } /** *

The user email addresses to which to send the email invitation.

*/ inline InviteUsersRequest& AddUserEmailList(const char* value) { m_userEmailListHasBeenSet = true; m_userEmailList.push_back(value); return *this; } /** *

The user type.

*/ inline const UserType& GetUserType() const{ return m_userType; } /** *

The user type.

*/ inline bool UserTypeHasBeenSet() const { return m_userTypeHasBeenSet; } /** *

The user type.

*/ inline void SetUserType(const UserType& value) { m_userTypeHasBeenSet = true; m_userType = value; } /** *

The user type.

*/ inline void SetUserType(UserType&& value) { m_userTypeHasBeenSet = true; m_userType = std::move(value); } /** *

The user type.

*/ inline InviteUsersRequest& WithUserType(const UserType& value) { SetUserType(value); return *this;} /** *

The user type.

*/ inline InviteUsersRequest& WithUserType(UserType&& value) { SetUserType(std::move(value)); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::Vector m_userEmailList; bool m_userEmailListHasBeenSet = false; UserType m_userType; bool m_userTypeHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws