Class: Aws::MemoryDB::Types::ACLPendingChanges

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

Overview

Returns the updates being applied to the ACL.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#user_names_to_addArray<String>

A list of users being added to the ACL

Returns:

  • (Array<String>)


81
82
83
84
85
86
# File 'gems/aws-sdk-memorydb/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_removeArray<String>

A list of user names being removed from the ACL

Returns:

  • (Array<String>)


81
82
83
84
85
86
# File 'gems/aws-sdk-memorydb/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