Class: Aws::MemoryDB::Types::User
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::User
- Defined in:
- gems/aws-sdk-memorydb/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.
3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 3708 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
3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 3708 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.
3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 3708 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.
3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 3708 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
3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 3708 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
3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 3708 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".
3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 3708 class User < Struct.new( :name, :status, :access_string, :acl_names, :minimum_engine_version, :authentication, :arn) SENSITIVE = [] include Aws::Structure end |