Class: Aws::MQ::Types::DescribeUserOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mq/types.rb

Overview

Returns information about an ActiveMQ user.

Instance Attribute Summary collapse

Instance Attribute Details

#broker_idString

Required. The unique ID that Amazon MQ generates for the broker.

Returns:

  • (String)


1186
1187
1188
1189
1190
1191
1192
1193
# File 'lib/aws-sdk-mq/types.rb', line 1186

class DescribeUserOutput < Struct.new(
  :broker_id,
  :console_access,
  :groups,
  :pending,
  :username)
  include Aws::Structure
end

#console_accessBoolean

Enables access to the the ActiveMQ Web Console for the ActiveMQ user.

Returns:

  • (Boolean)


1186
1187
1188
1189
1190
1191
1192
1193
# File 'lib/aws-sdk-mq/types.rb', line 1186

class DescribeUserOutput < Struct.new(
  :broker_id,
  :console_access,
  :groups,
  :pending,
  :username)
  include Aws::Structure
end

#groupsArray<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.

Returns:

  • (Array<String>)


1186
1187
1188
1189
1190
1191
1192
1193
# File 'lib/aws-sdk-mq/types.rb', line 1186

class DescribeUserOutput < Struct.new(
  :broker_id,
  :console_access,
  :groups,
  :pending,
  :username)
  include Aws::Structure
end

#pendingTypes::UserPendingChanges

The status of the changes pending for the ActiveMQ user.



1186
1187
1188
1189
1190
1191
1192
1193
# File 'lib/aws-sdk-mq/types.rb', line 1186

class DescribeUserOutput < Struct.new(
  :broker_id,
  :console_access,
  :groups,
  :pending,
  :username)
  include Aws::Structure
end

#usernameString

Required. 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.

Returns:

  • (String)


1186
1187
1188
1189
1190
1191
1192
1193
# File 'lib/aws-sdk-mq/types.rb', line 1186

class DescribeUserOutput < Struct.new(
  :broker_id,
  :console_access,
  :groups,
  :pending,
  :username)
  include Aws::Structure
end