Module Values.ConfigStreamDeliveryInfoSource

A list that contains the status of the delivery of the configuration stream notification to the Amazon SNS topic.

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

    Status of the last attempted delivery. Note Providing an SNS topic on a DeliveryChannel for Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable.

    *)
  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. lastStatusChangeTime : Date.t option;
    (*

    The time from the last status change.

    *)
}
Sourceval make : ?lastStatus:??? -> ?lastErrorCode:??? -> ?lastErrorMessage:??? -> ?lastStatusChangeTime:??? -> 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