Class: Aws::ElastiCache::Types::DeleteGlobalReplicationGroupMessage

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

Overview

Note:

When making an API call, you may pass DeleteGlobalReplicationGroupMessage data as a hash:

{
  global_replication_group_id: "String", # required
  retain_primary_replication_group: false, # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#global_replication_group_idString

The name of the Global datastore

Returns:

  • (String)


3555
3556
3557
3558
3559
3560
# File 'lib/aws-sdk-elasticache/types.rb', line 3555

class DeleteGlobalReplicationGroupMessage < Struct.new(
  :global_replication_group_id,
  :retain_primary_replication_group)
  SENSITIVE = []
  include Aws::Structure
end

#retain_primary_replication_groupBoolean

The primary replication group is retained as a standalone replication group.

Returns:

  • (Boolean)


3555
3556
3557
3558
3559
3560
# File 'lib/aws-sdk-elasticache/types.rb', line 3555

class DeleteGlobalReplicationGroupMessage < Struct.new(
  :global_replication_group_id,
  :retain_primary_replication_group)
  SENSITIVE = []
  include Aws::Structure
end