Module Values.ClusterSnapshotCopyStatusSource

Returns the destination region and retention period that are configured for cross-region snapshot copy.

Sourcetype nonrec t = {
  1. destinationRegion : String_.t option;
    (*

    The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

    *)
  2. retentionPeriod : Long.t option;
    (*

    The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

    *)
  3. manualSnapshotRetentionPeriod : Integer.t option;
    (*

    The number of days that automated snapshots are retained in the destination region after they are copied from a source region. If the value is -1, the manual snapshot is retained indefinitely. The value must be either -1 or an integer between 1 and 3,653.

    *)
  4. snapshotCopyGrantName : String_.t option;
    (*

    The name of the snapshot copy grant.

    *)
}
Sourceval make : ?destinationRegion:??? -> ?retentionPeriod:??? -> ?manualSnapshotRetentionPeriod:??? -> ?snapshotCopyGrantName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t