KeyspaceReplicationSpecification constructor

const KeyspaceReplicationSpecification({
  1. Input<List<String>?>? regionLists,
  2. Input<String?>? replicationStrategy,
})

Creates a new KeyspaceReplicationSpecification. regionLists Replication regions. If replicationStrategy is MULTI_REGION, regionList requires the current Region and at least one additional AWS Region where the keyspace is going to be replicated in. replicationStrategy Replication strategy. Valid values: SINGLE_REGION and MULTI_REGION.

Implementation

const KeyspaceReplicationSpecification({
  this.regionLists,
  this.replicationStrategy,
});