Module Values.ConvertRecoveryPointToSnapshotRequestSource

Converts a recovery point to a snapshot. For more information about recovery points and snapshots, see Working with snapshots and recovery points.

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

    The unique identifier of the recovery point.

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

    How long to retain the snapshot.

    *)
  3. snapshotName : String_.t;
    (*

    The name of the snapshot.

    *)
  4. tags : TagList.t option;
    (*

    An array of Tag objects to associate with the created snapshot.

    *)
}
Sourceval context_ : string
Sourceval make : ?retentionPeriod:??? -> ?tags:??? -> recoveryPointId:String_.t -> snapshotName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `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