Module Values.GetSnapshotRequestSource

Returns information about a specific snapshot.

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

    The owner Amazon Web Services account of a snapshot shared with another user.

    *)
  2. snapshotArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the snapshot to return.

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

    The name of the snapshot to return.

    *)
}
Sourceval make : ?ownerAccount:??? -> ?snapshotArn:??? -> ?snapshotName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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