Module Values.DeliveryChannelStatusSource

The status of a specified delivery channel. Valid values: Success | Failure

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

    The name of the delivery channel.

    *)
  2. configSnapshotDeliveryInfo : ConfigExportDeliveryInfo.t option;
    (*

    A list containing the status of the delivery of the snapshot to the specified Amazon S3 bucket.

    *)
  3. configHistoryDeliveryInfo : ConfigExportDeliveryInfo.t option;
    (*

    A list that contains the status of the delivery of the configuration history to the specified Amazon S3 bucket.

    *)
  4. configStreamDeliveryInfo : ConfigStreamDeliveryInfo.t option;
    (*

    A list containing the status of the delivery of the configuration stream notification to the specified Amazon SNS topic.

    *)
}
Sourceval make : ?name:??? -> ?configSnapshotDeliveryInfo:??? -> ?configHistoryDeliveryInfo:??? -> ?configStreamDeliveryInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.t ]) list ]) 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