Class: Aws::MQ::Types::UpdateUserInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::UpdateUserInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mq/types.rb
Overview
Updates the information for an ActiveMQ user.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#console_access ⇒ Boolean
Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
-
#groups ⇒ Array<String>
The list of groups (20 maximum) to which the ActiveMQ user belongs.
-
#password ⇒ String
The password of the user.
-
#replication_user ⇒ Boolean
Defines whether the user is intended for data replication.
Instance Attribute Details
#console_access ⇒ Boolean
Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
3046 3047 3048 3049 3050 3051 3052 3053 |
# File 'lib/aws-sdk-mq/types.rb', line 3046 class UpdateUserInput < Struct.new( :console_access, :groups, :password, :replication_user) SENSITIVE = [] include Aws::Structure end |
#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.
3046 3047 3048 3049 3050 3051 3052 3053 |
# File 'lib/aws-sdk-mq/types.rb', line 3046 class UpdateUserInput < Struct.new( :console_access, :groups, :password, :replication_user) SENSITIVE = [] include Aws::Structure end |
#password ⇒ String
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 (,:=).
3046 3047 3048 3049 3050 3051 3052 3053 |
# File 'lib/aws-sdk-mq/types.rb', line 3046 class UpdateUserInput < Struct.new( :console_access, :groups, :password, :replication_user) SENSITIVE = [] include Aws::Structure end |
#replication_user ⇒ Boolean
Defines whether the user is intended for data replication.
3046 3047 3048 3049 3050 3051 3052 3053 |
# File 'lib/aws-sdk-mq/types.rb', line 3046 class UpdateUserInput < Struct.new( :console_access, :groups, :password, :replication_user) SENSITIVE = [] include Aws::Structure end |