Class Rpo

All Implemented Interfaces:
Serializable

public final class Rpo extends StringEnumValue
Enums for the Recovery Point Objective (RPO) of dual-region buckets, which determines how fast data is replicated between regions.
See Also:
  • Field Details

    • DEFAULT

      public static final Rpo DEFAULT
      Default recovery point objective. With this setting, there is no guarantee on the amount of time it takes for data to replicate between regions.
    • ASYNC_TURBO

      public static final Rpo ASYNC_TURBO
      Turbo recovery point objective. With this setting, data in a dual-region bucket will replicate between regions within 15 minutes.
  • Method Details

    • valueOfStrict

      public static Rpo valueOfStrict(String constant)
      Get the Rpo for the given String constant, and throw an exception if the constant is not recognized.
    • valueOf

      public static Rpo valueOf(String constant)
      Get the Rpo for the given String constant, and allow unrecognized values.
    • values

      public static Rpo[] values()
      Return the known values for Rpo.