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- the Amazon Web Services Regions where the keyspace is replicated in.replicationStrategy- the required value isSINGLE_REGIONorMULTI_REGION.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#region_list ⇒ Array<String>
The
regionListcontains the Amazon Web Services Regions where the keyspace is replicated in. -
#replication_strategy ⇒ String
The
replicationStrategyof a keyspace, the required value isSINGLE_REGIONorMULTI_REGION.
Instance Attribute Details
#region_list ⇒ Array<String>
The regionList contains the Amazon Web Services Regions where the
keyspace is replicated in.
1683 1684 1685 1686 1687 1688 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1683 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.
1683 1684 1685 1686 1687 1688 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1683 class ReplicationSpecification < Struct.new( :replication_strategy, :region_list) SENSITIVE = [] include Aws::Structure end |