Class: Aws::MQ::Types::UserSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::UserSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mq/types.rb
Overview
Returns a list of all broker users. Does not apply to RabbitMQ brokers.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pending_change ⇒ String
The type of change pending for the broker user.
-
#username ⇒ String
Required.
Instance Attribute Details
#pending_change ⇒ String
The type of change pending for the broker user.
3197 3198 3199 3200 3201 3202 |
# File 'lib/aws-sdk-mq/types.rb', line 3197 class UserSummary < Struct.new( :pending_change, :username) SENSITIVE = [] include Aws::Structure end |
#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.
3197 3198 3199 3200 3201 3202 |
# File 'lib/aws-sdk-mq/types.rb', line 3197 class UserSummary < Struct.new( :pending_change, :username) SENSITIVE = [] include Aws::Structure end |