ReplicaInfoType

enum ReplicaInfoType : Enum<ReplicaInfoType> , ConvertibleToJava<ReplicaInfoType>

The type of replica.

Entries

Link copied to clipboard

Not specified.

Link copied to clipboard

Read-write replicas support both reads and writes. These replicas: * Maintain a full copy of your data. * Serve reads. * Can vote whether to commit a write. * Participate in leadership election. * Are eligible to become a leader.

Link copied to clipboard

Read-only replicas only support reads (not writes). Read-only replicas: * Maintain a full copy of your data. * Serve reads. * Do not participate in voting to commit writes. * Are not eligible to become a leader.

Link copied to clipboard

Witness replicas don't support reads but do participate in voting to commit writes. Witness replicas: * Do not maintain a full copy of data. * Do not serve reads. * Vote whether to commit writes. * Participate in leader election but are not eligible to become leader.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toJava(): ReplicaInfoType
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val javaValue: ReplicaInfoType
Link copied to clipboard
Link copied to clipboard