Class: Aws::MQ::Types::UserSummary

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mq/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

Instance Attribute Details

#pending_changeString

The type of change pending for the broker user.

Returns:

  • (String)


3164
3165
3166
3167
3168
3169
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 3164

class UserSummary < Struct.new(
  :pending_change,
  :username)
  SENSITIVE = []
  include Aws::Structure
end

#usernameString

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.

Returns:

  • (String)


3164
3165
3166
3167
3168
3169
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 3164

class UserSummary < Struct.new(
  :pending_change,
  :username)
  SENSITIVE = []
  include Aws::Structure
end