Class: Aws::MemoryDB::Types::ACLPendingChanges
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::ACLPendingChanges
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Returns the updates being applied to the ACL.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#user_names_to_add ⇒ Array<String>
A list of users being added to the ACL.
-
#user_names_to_remove ⇒ Array<String>
A list of user names being removed from the ACL.
Instance Attribute Details
#user_names_to_add ⇒ Array<String>
A list of users being added to the ACL
81 82 83 84 85 86 |
# File 'lib/aws-sdk-memorydb/types.rb', line 81 class ACLPendingChanges < Struct.new( :user_names_to_remove, :user_names_to_add) SENSITIVE = [] include Aws::Structure end |
#user_names_to_remove ⇒ Array<String>
A list of user names being removed from the ACL
81 82 83 84 85 86 |
# File 'lib/aws-sdk-memorydb/types.rb', line 81 class ACLPendingChanges < Struct.new( :user_names_to_remove, :user_names_to_add) SENSITIVE = [] include Aws::Structure end |