Module Values.ApplicationRestoreConfigurationSource

Specifies the method and snapshot to use when restarting an application using previously saved application state.

Sourcetype nonrec t = {
  1. applicationRestoreType : ApplicationRestoreType.t;
    (*

    Specifies how the application should be restored.

    *)
  2. snapshotName : SnapshotName.t option;
    (*

    The identifier of an existing snapshot of application state to use to restart an application. The application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT is specified for the ApplicationRestoreType.

    *)
}
Sourceval context_ : string
Sourceval make : ?snapshotName:??? -> applicationRestoreType:ApplicationRestoreType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SnapshotName.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