Class: Aws::ElastiCache::Types::UserGroupPendingChanges

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticache/types.rb

Overview

Returns the updates being applied to the user group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#user_ids_to_addArray<String>

The list of user IDs to add.

Returns:

  • (Array<String>)


9798
9799
9800
9801
9802
9803
# File 'lib/aws-sdk-elasticache/types.rb', line 9798

class UserGroupPendingChanges < Struct.new(
  :user_ids_to_remove,
  :user_ids_to_add)
  SENSITIVE = []
  include Aws::Structure
end

#user_ids_to_removeArray<String>

The list of user IDs to remove.

Returns:

  • (Array<String>)


9798
9799
9800
9801
9802
9803
# File 'lib/aws-sdk-elasticache/types.rb', line 9798

class UserGroupPendingChanges < Struct.new(
  :user_ids_to_remove,
  :user_ids_to_add)
  SENSITIVE = []
  include Aws::Structure
end