Class: Aws::Keyspaces::Types::ReplicationSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ReplicationSpecification
- Defined in:
- gems/aws-sdk-keyspaces/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 isSINGLE_REGION
orMULTI_REGION
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#region_list ⇒ Array<String>
The
regionList
can contain up to six Amazon Web Services Regions where the keyspace is replicated in. -
#replication_strategy ⇒ String
The
replicationStrategy
of a keyspace, the required value isSINGLE_REGION
orMULTI_REGION
.
Instance Attribute Details
#region_list ⇒ Array<String>
The regionList
can contain up to six Amazon Web Services Regions
where the keyspace is replicated in.
1579 1580 1581 1582 1583 1584 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1579 class ReplicationSpecification < Struct.new( :replication_strategy, :region_list) SENSITIVE = [] include Aws::Structure end |
#replication_strategy ⇒ String
The replicationStrategy
of a keyspace, the required value is
SINGLE_REGION
or MULTI_REGION
.
1579 1580 1581 1582 1583 1584 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1579 class ReplicationSpecification < Struct.new( :replication_strategy, :region_list) SENSITIVE = [] include Aws::Structure end |