Module Values.SnapshotSource

Describes a directory snapshot.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t option;
    (*

    The directory identifier.

    *)
  2. snapshotId : SnapshotId.t option;
    (*

    The snapshot identifier.

    *)
  3. type_ : SnapshotType.t option;
    (*

    The snapshot type.

    *)
  4. name : SnapshotName.t option;
    (*

    The descriptive name of the snapshot.

    *)
  5. status : SnapshotStatus.t option;
    (*

    The snapshot status.

    *)
  6. startTime : StartTime.t option;
    (*

    The date and time that the snapshot was taken.

    *)
}
Sourceval make : ?directoryId:??? -> ?snapshotId:??? -> ?type_:??? -> ?name:??? -> ?status:??? -> ?startTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DirectoryId.t | `Timestamp of StartTime.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