Module Values.ConfigExportDeliveryInfoSource

Provides status of the delivery of the snapshot or the configuration history to the specified Amazon S3 bucket. Also provides the status of notifications about the Amazon S3 delivery to the specified Amazon SNS topic.

Sourcetype nonrec t = {
  1. lastStatus : DeliveryStatus.t option;
    (*

    Status of the last attempted delivery.

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

    The error code from the last attempted delivery.

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

    The error message from the last attempted delivery.

    *)
  4. lastAttemptTime : Date.t option;
    (*

    The time of the last attempted delivery.

    *)
  5. lastSuccessfulTime : Date.t option;
    (*

    The time of the last successful delivery.

    *)
  6. nextDeliveryTime : Date.t option;
    (*

    The time that the next delivery occurs.

    *)
}
Sourceval make : ?lastStatus:??? -> ?lastErrorCode:??? -> ?lastErrorMessage:??? -> ?lastAttemptTime:??? -> ?lastSuccessfulTime:??? -> ?nextDeliveryTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.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