Class: Aws::Keyspaces::Types::ReplicationSpecification

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

Overview

The replication specification of the keyspace includes:

  • ‘regionList` - up to six Amazon Web Services Regions where the keyspace is replicated in.

  • ‘replicationStrategy` - the required value is `SINGLE_REGION` or `MULTI_REGION`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#region_listArray<String>

The ‘regionList` can contain up to six Amazon Web Services Regions where the keyspace is replicated in.

Returns:

  • (Array<String>)


1310
1311
1312
1313
1314
1315
# File 'lib/aws-sdk-keyspaces/types.rb', line 1310

class ReplicationSpecification < Struct.new(
  :replication_strategy,
  :region_list)
  SENSITIVE = []
  include Aws::Structure
end

#replication_strategyString

The ‘replicationStrategy` of a keyspace, the required value is `SINGLE_REGION` or `MULTI_REGION`.

Returns:

  • (String)


1310
1311
1312
1313
1314
1315
# File 'lib/aws-sdk-keyspaces/types.rb', line 1310

class ReplicationSpecification < Struct.new(
  :replication_strategy,
  :region_list)
  SENSITIVE = []
  include Aws::Structure
end