This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-chime/include/aws/chime/model/CreateUserRequest.h

207 lines
5.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/chime/Chime_EXPORTS.h>
#include <aws/chime/ChimeRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/chime/model/UserType.h>
#include <utility>
namespace Aws
{
namespace Chime
{
namespace Model
{
/**
*/
class AWS_CHIME_API CreateUserRequest : public ChimeRequest
{
public:
CreateUserRequest();
// 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 "CreateUser"; }
Aws::String SerializePayload() const override;
/**
* <p>The Amazon Chime account ID.</p>
*/
inline const Aws::String& GetAccountId() const{ return m_accountId; }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline CreateUserRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
/**
* <p>The Amazon Chime account ID.</p>
*/
inline CreateUserRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
/**
* <p>The Amazon Chime account ID.</p>
*/
inline CreateUserRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
/**
* <p>The user name.</p>
*/
inline const Aws::String& GetUsername() const{ return m_username; }
/**
* <p>The user name.</p>
*/
inline bool UsernameHasBeenSet() const { return m_usernameHasBeenSet; }
/**
* <p>The user name.</p>
*/
inline void SetUsername(const Aws::String& value) { m_usernameHasBeenSet = true; m_username = value; }
/**
* <p>The user name.</p>
*/
inline void SetUsername(Aws::String&& value) { m_usernameHasBeenSet = true; m_username = std::move(value); }
/**
* <p>The user name.</p>
*/
inline void SetUsername(const char* value) { m_usernameHasBeenSet = true; m_username.assign(value); }
/**
* <p>The user name.</p>
*/
inline CreateUserRequest& WithUsername(const Aws::String& value) { SetUsername(value); return *this;}
/**
* <p>The user name.</p>
*/
inline CreateUserRequest& WithUsername(Aws::String&& value) { SetUsername(std::move(value)); return *this;}
/**
* <p>The user name.</p>
*/
inline CreateUserRequest& WithUsername(const char* value) { SetUsername(value); return *this;}
/**
* <p>The user's email address.</p>
*/
inline const Aws::String& GetEmail() const{ return m_email; }
/**
* <p>The user's email address.</p>
*/
inline bool EmailHasBeenSet() const { return m_emailHasBeenSet; }
/**
* <p>The user's email address.</p>
*/
inline void SetEmail(const Aws::String& value) { m_emailHasBeenSet = true; m_email = value; }
/**
* <p>The user's email address.</p>
*/
inline void SetEmail(Aws::String&& value) { m_emailHasBeenSet = true; m_email = std::move(value); }
/**
* <p>The user's email address.</p>
*/
inline void SetEmail(const char* value) { m_emailHasBeenSet = true; m_email.assign(value); }
/**
* <p>The user's email address.</p>
*/
inline CreateUserRequest& WithEmail(const Aws::String& value) { SetEmail(value); return *this;}
/**
* <p>The user's email address.</p>
*/
inline CreateUserRequest& WithEmail(Aws::String&& value) { SetEmail(std::move(value)); return *this;}
/**
* <p>The user's email address.</p>
*/
inline CreateUserRequest& WithEmail(const char* value) { SetEmail(value); return *this;}
/**
* <p>The user type.</p>
*/
inline const UserType& GetUserType() const{ return m_userType; }
/**
* <p>The user type.</p>
*/
inline bool UserTypeHasBeenSet() const { return m_userTypeHasBeenSet; }
/**
* <p>The user type.</p>
*/
inline void SetUserType(const UserType& value) { m_userTypeHasBeenSet = true; m_userType = value; }
/**
* <p>The user type.</p>
*/
inline void SetUserType(UserType&& value) { m_userTypeHasBeenSet = true; m_userType = std::move(value); }
/**
* <p>The user type.</p>
*/
inline CreateUserRequest& WithUserType(const UserType& value) { SetUserType(value); return *this;}
/**
* <p>The user type.</p>
*/
inline CreateUserRequest& WithUserType(UserType&& value) { SetUserType(std::move(value)); return *this;}
private:
Aws::String m_accountId;
bool m_accountIdHasBeenSet;
Aws::String m_username;
bool m_usernameHasBeenSet;
Aws::String m_email;
bool m_emailHasBeenSet;
UserType m_userType;
bool m_userTypeHasBeenSet;
};
} // namespace Model
} // namespace Chime
} // namespace Aws