Class: Aws::Keyspaces::Types::ReplicationSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ReplicationSpecification
- 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
-
#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 is `SINGLE_REGION` or `MULTI_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.
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_strategy ⇒ String
The ‘replicationStrategy` of a keyspace, the required value is `SINGLE_REGION` or `MULTI_REGION`.
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 |