Class: Aws::MemoryDB::Types::User
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::User
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
You create users and assign them specific permissions by using an access string. You assign the users to Access Control Lists aligned with a specific role (administrators, human resources) that are then deployed to one or more MemoryDB clusters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_string ⇒ String
Access permissions string used for this user.
-
#acl_names ⇒ Array<String>
The names of the Access Control Lists to which the user belongs.
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the user.
-
#authentication ⇒ Types::Authentication
Denotes whether the user requires a password to authenticate.
-
#minimum_engine_version ⇒ String
The minimum engine version supported for the user.
-
#name ⇒ String
The name of the user.
-
#status ⇒ String
Indicates the user status.
Instance Attribute Details
#access_string ⇒ String
Access permissions string used for this user.
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3349 class User < Struct.new( :name, :status, :access_string, :acl_names, :minimum_engine_version, :authentication, :arn) SENSITIVE = [] include Aws::Structure end |
#acl_names ⇒ Array<String>
The names of the Access Control Lists to which the user belongs
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3349 class User < Struct.new( :name, :status, :access_string, :acl_names, :minimum_engine_version, :authentication, :arn) SENSITIVE = [] include Aws::Structure end |
#arn ⇒ String
The Amazon Resource Name (ARN) of the user.
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3349 class User < Struct.new( :name, :status, :access_string, :acl_names, :minimum_engine_version, :authentication, :arn) SENSITIVE = [] include Aws::Structure end |
#authentication ⇒ Types::Authentication
Denotes whether the user requires a password to authenticate.
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3349 class User < Struct.new( :name, :status, :access_string, :acl_names, :minimum_engine_version, :authentication, :arn) SENSITIVE = [] include Aws::Structure end |
#minimum_engine_version ⇒ String
The minimum engine version supported for the user
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3349 class User < Struct.new( :name, :status, :access_string, :acl_names, :minimum_engine_version, :authentication, :arn) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the user
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3349 class User < Struct.new( :name, :status, :access_string, :acl_names, :minimum_engine_version, :authentication, :arn) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Indicates the user status. Can be “active”, “modifying” or “deleting”.
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3349 class User < Struct.new( :name, :status, :access_string, :acl_names, :minimum_engine_version, :authentication, :arn) SENSITIVE = [] include Aws::Structure end |