Module Values.AwsRedshiftClusterClusterSnapshotCopyStatusSource

You can configure Amazon Redshift to copy snapshots for a cluster to another Amazon Web Services Region. This parameter provides information about a cross-Region snapshot copy.

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

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

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

    The number of days that manual snapshots are retained in the destination Region after they are copied from a source Region. If the value is -1, then the manual snapshot is retained indefinitely. Valid values: Either -1 or an integer between 1 and 3,653

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

    The number of days to retain automated snapshots in the destination Region after they are copied from a source Region.

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

    The name of the snapshot copy grant.

    *)
}
Sourceval make : ?destinationRegion:??? -> ?manualSnapshotRetentionPeriod:??? -> ?retentionPeriod:??? -> ?snapshotCopyGrantName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.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