You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::MQ::Types::User
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::User
- Defined in:
- (unknown)
Overview
When passing User as input to an Aws::Client method, you can use a vanilla Hash:
{
console_access: false,
groups: ["__string"],
password: "__string",
username: "__string",
}
A user associated with the broker.
Instance Attribute Summary collapse
-
#console_access ⇒ Boolean
Enables access to the ActiveMQ Web Console for the ActiveMQ user (Does not apply to RabbitMQ brokers).
-
#groups ⇒ Array<String>
The list of groups (20 maximum) to which the ActiveMQ user belongs.
-
#password ⇒ String
Required.
-
#username ⇒ String
Required.
Instance Attribute Details
#console_access ⇒ Boolean
Enables access to the ActiveMQ Web Console for the ActiveMQ user (Does not apply to RabbitMQ brokers).
#groups ⇒ Array<String>
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.
#password ⇒ String
Required. The password of the broker user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas.
#username ⇒ String
Required. The username of the broker user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.