Class: Aws::MQ::Types::CreateUserInput

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

Overview

Creates a new ActiveMQ user.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#console_accessBoolean

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

Returns:

  • (Boolean)


921
922
923
924
925
926
927
928
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 921

class CreateUserInput < Struct.new(
  :console_access,
  :groups,
  :password,
  :replication_user)
  SENSITIVE = []
  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>)


921
922
923
924
925
926
927
928
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 921

class CreateUserInput < Struct.new(
  :console_access,
  :groups,
  :password,
  :replication_user)
  SENSITIVE = []
  include Aws::Structure
end

#passwordString

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, colons, or equal signs (,:=).

Returns:

  • (String)


921
922
923
924
925
926
927
928
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 921

class CreateUserInput < Struct.new(
  :console_access,
  :groups,
  :password,
  :replication_user)
  SENSITIVE = []
  include Aws::Structure
end

#replication_userBoolean

Defines if this user is intended for CRDR replication purposes.

Returns:

  • (Boolean)


921
922
923
924
925
926
927
928
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 921

class CreateUserInput < Struct.new(
  :console_access,
  :groups,
  :password,
  :replication_user)
  SENSITIVE = []
  include Aws::Structure
end