291 lines
12 KiB
C++
291 lines
12 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/mq/MQ_EXPORTS.h>
|
|
#include <aws/mq/MQRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace MQ
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* Creates a new ActiveMQ user.<p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/CreateUserRequest">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_MQ_API CreateUserRequest : public MQRequest
|
|
{
|
|
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;
|
|
|
|
|
|
/**
|
|
* The unique ID that Amazon MQ generates for the broker.
|
|
*/
|
|
inline const Aws::String& GetBrokerId() const{ return m_brokerId; }
|
|
|
|
/**
|
|
* The unique ID that Amazon MQ generates for the broker.
|
|
*/
|
|
inline bool BrokerIdHasBeenSet() const { return m_brokerIdHasBeenSet; }
|
|
|
|
/**
|
|
* The unique ID that Amazon MQ generates for the broker.
|
|
*/
|
|
inline void SetBrokerId(const Aws::String& value) { m_brokerIdHasBeenSet = true; m_brokerId = value; }
|
|
|
|
/**
|
|
* The unique ID that Amazon MQ generates for the broker.
|
|
*/
|
|
inline void SetBrokerId(Aws::String&& value) { m_brokerIdHasBeenSet = true; m_brokerId = std::move(value); }
|
|
|
|
/**
|
|
* The unique ID that Amazon MQ generates for the broker.
|
|
*/
|
|
inline void SetBrokerId(const char* value) { m_brokerIdHasBeenSet = true; m_brokerId.assign(value); }
|
|
|
|
/**
|
|
* The unique ID that Amazon MQ generates for the broker.
|
|
*/
|
|
inline CreateUserRequest& WithBrokerId(const Aws::String& value) { SetBrokerId(value); return *this;}
|
|
|
|
/**
|
|
* The unique ID that Amazon MQ generates for the broker.
|
|
*/
|
|
inline CreateUserRequest& WithBrokerId(Aws::String&& value) { SetBrokerId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* The unique ID that Amazon MQ generates for the broker.
|
|
*/
|
|
inline CreateUserRequest& WithBrokerId(const char* value) { SetBrokerId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
|
|
*/
|
|
inline bool GetConsoleAccess() const{ return m_consoleAccess; }
|
|
|
|
/**
|
|
* Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
|
|
*/
|
|
inline bool ConsoleAccessHasBeenSet() const { return m_consoleAccessHasBeenSet; }
|
|
|
|
/**
|
|
* Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
|
|
*/
|
|
inline void SetConsoleAccess(bool value) { m_consoleAccessHasBeenSet = true; m_consoleAccess = value; }
|
|
|
|
/**
|
|
* Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
|
|
*/
|
|
inline CreateUserRequest& WithConsoleAccess(bool value) { SetConsoleAccess(value); return *this;}
|
|
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetGroups() const{ return m_groups; }
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline bool GroupsHasBeenSet() const { return m_groupsHasBeenSet; }
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline void SetGroups(const Aws::Vector<Aws::String>& value) { m_groupsHasBeenSet = true; m_groups = value; }
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline void SetGroups(Aws::Vector<Aws::String>&& value) { m_groupsHasBeenSet = true; m_groups = std::move(value); }
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline CreateUserRequest& WithGroups(const Aws::Vector<Aws::String>& value) { SetGroups(value); return *this;}
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline CreateUserRequest& WithGroups(Aws::Vector<Aws::String>&& value) { SetGroups(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline CreateUserRequest& AddGroups(const Aws::String& value) { m_groupsHasBeenSet = true; m_groups.push_back(value); return *this; }
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline CreateUserRequest& AddGroups(Aws::String&& value) { m_groupsHasBeenSet = true; m_groups.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* The list of groups (20 maximum) to which the ActiveMQ user belongs. This value
|
|
* can contain only alphanumeric characters, dashes, periods, underscores, and
|
|
* tildes (- . _ ~). This value must be 2-100 characters long.
|
|
*/
|
|
inline CreateUserRequest& AddGroups(const char* value) { m_groupsHasBeenSet = true; m_groups.push_back(value); return *this; }
|
|
|
|
|
|
/**
|
|
* Required. The password of the user. This value must be at least 12 characters
|
|
* long, must contain at least 4 unique characters, and must not contain commas.
|
|
*/
|
|
inline const Aws::String& GetPassword() const{ return m_password; }
|
|
|
|
/**
|
|
* Required. The password of the user. This value must be at least 12 characters
|
|
* long, must contain at least 4 unique characters, and must not contain commas.
|
|
*/
|
|
inline bool PasswordHasBeenSet() const { return m_passwordHasBeenSet; }
|
|
|
|
/**
|
|
* Required. The password of the user. This value must be at least 12 characters
|
|
* long, must contain at least 4 unique characters, and must not contain commas.
|
|
*/
|
|
inline void SetPassword(const Aws::String& value) { m_passwordHasBeenSet = true; m_password = value; }
|
|
|
|
/**
|
|
* Required. The password of the user. This value must be at least 12 characters
|
|
* long, must contain at least 4 unique characters, and must not contain commas.
|
|
*/
|
|
inline void SetPassword(Aws::String&& value) { m_passwordHasBeenSet = true; m_password = std::move(value); }
|
|
|
|
/**
|
|
* Required. The password of the user. This value must be at least 12 characters
|
|
* long, must contain at least 4 unique characters, and must not contain commas.
|
|
*/
|
|
inline void SetPassword(const char* value) { m_passwordHasBeenSet = true; m_password.assign(value); }
|
|
|
|
/**
|
|
* Required. The password of the user. This value must be at least 12 characters
|
|
* long, must contain at least 4 unique characters, and must not contain commas.
|
|
*/
|
|
inline CreateUserRequest& WithPassword(const Aws::String& value) { SetPassword(value); return *this;}
|
|
|
|
/**
|
|
* Required. The password of the user. This value must be at least 12 characters
|
|
* long, must contain at least 4 unique characters, and must not contain commas.
|
|
*/
|
|
inline CreateUserRequest& WithPassword(Aws::String&& value) { SetPassword(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* Required. The password of the user. This value must be at least 12 characters
|
|
* long, must contain at least 4 unique characters, and must not contain commas.
|
|
*/
|
|
inline CreateUserRequest& WithPassword(const char* value) { SetPassword(value); return *this;}
|
|
|
|
|
|
/**
|
|
* The username of the ActiveMQ user. This value can contain only alphanumeric
|
|
* characters, dashes, periods, underscores, and tildes (- . _ ~). This value must
|
|
* be 2-100 characters long.
|
|
*/
|
|
inline const Aws::String& GetUsername() const{ return m_username; }
|
|
|
|
/**
|
|
* The username of the ActiveMQ user. This value can contain only alphanumeric
|
|
* characters, dashes, periods, underscores, and tildes (- . _ ~). This value must
|
|
* be 2-100 characters long.
|
|
*/
|
|
inline bool UsernameHasBeenSet() const { return m_usernameHasBeenSet; }
|
|
|
|
/**
|
|
* The username of the ActiveMQ user. This value can contain only alphanumeric
|
|
* characters, dashes, periods, underscores, and tildes (- . _ ~). This value must
|
|
* be 2-100 characters long.
|
|
*/
|
|
inline void SetUsername(const Aws::String& value) { m_usernameHasBeenSet = true; m_username = value; }
|
|
|
|
/**
|
|
* The username of the ActiveMQ user. This value can contain only alphanumeric
|
|
* characters, dashes, periods, underscores, and tildes (- . _ ~). This value must
|
|
* be 2-100 characters long.
|
|
*/
|
|
inline void SetUsername(Aws::String&& value) { m_usernameHasBeenSet = true; m_username = std::move(value); }
|
|
|
|
/**
|
|
* The username of the ActiveMQ user. This value can contain only alphanumeric
|
|
* characters, dashes, periods, underscores, and tildes (- . _ ~). This value must
|
|
* be 2-100 characters long.
|
|
*/
|
|
inline void SetUsername(const char* value) { m_usernameHasBeenSet = true; m_username.assign(value); }
|
|
|
|
/**
|
|
* The username of the ActiveMQ user. This value can contain only alphanumeric
|
|
* characters, dashes, periods, underscores, and tildes (- . _ ~). This value must
|
|
* be 2-100 characters long.
|
|
*/
|
|
inline CreateUserRequest& WithUsername(const Aws::String& value) { SetUsername(value); return *this;}
|
|
|
|
/**
|
|
* The username of the ActiveMQ user. This value can contain only alphanumeric
|
|
* characters, dashes, periods, underscores, and tildes (- . _ ~). This value must
|
|
* be 2-100 characters long.
|
|
*/
|
|
inline CreateUserRequest& WithUsername(Aws::String&& value) { SetUsername(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* The username of the ActiveMQ user. This value can contain only alphanumeric
|
|
* characters, dashes, periods, underscores, and tildes (- . _ ~). This value must
|
|
* be 2-100 characters long.
|
|
*/
|
|
inline CreateUserRequest& WithUsername(const char* value) { SetUsername(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_brokerId;
|
|
bool m_brokerIdHasBeenSet;
|
|
|
|
bool m_consoleAccess;
|
|
bool m_consoleAccessHasBeenSet;
|
|
|
|
Aws::Vector<Aws::String> m_groups;
|
|
bool m_groupsHasBeenSet;
|
|
|
|
Aws::String m_password;
|
|
bool m_passwordHasBeenSet;
|
|
|
|
Aws::String m_username;
|
|
bool m_usernameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace MQ
|
|
} // namespace Aws
|