Interface CfnKeyspace.ReplicationSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKeyspace.ReplicationSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnKeyspace

@Stability(Stable) public static interface CfnKeyspace.ReplicationSpecificationProperty extends software.amazon.jsii.JsiiSerializable
You can use ReplicationSpecification to configure the ReplicationStrategy of a keyspace in Amazon Keyspaces .

The ReplicationSpecification property is CreateOnly and cannot be changed after the keyspace has been created. This property applies automatically to all tables in the keyspace.

For more information, see Multi-Region Replication in the Amazon Keyspaces Developer Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cassandra.*;
 ReplicationSpecificationProperty replicationSpecificationProperty = ReplicationSpecificationProperty.builder()
         .regionList(List.of("regionList"))
         .replicationStrategy("replicationStrategy")
         .build();
 

See Also: