Module Values.CreateSnapshotRequestSource

Creates a snapshot of all databases in a namespace. For more information about snapshots, see Working with snapshots and recovery points.

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

    The namespace to create a snapshot for.

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

    How long to retain the created snapshot.

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

    The name of the snapshot.

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

    An array of Tag objects to associate with the snapshot.

    *)
}
Sourceval context_ : string
Sourceval make : ?retentionPeriod:??? -> ?tags:??? -> namespaceName: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