package aws-cloudtrail

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. is_logging : Aws.BaseTypes.Boolean.t option;
  2. latest_delivery_error : Aws.BaseTypes.String.t option;
  3. latest_notification_error : Aws.BaseTypes.String.t option;
  4. latest_delivery_time : Aws.BaseTypes.DateTime.t option;
  5. latest_notification_time : Aws.BaseTypes.DateTime.t option;
  6. start_logging_time : Aws.BaseTypes.DateTime.t option;
  7. stop_logging_time : Aws.BaseTypes.DateTime.t option;
  8. latest_cloud_watch_logs_delivery_error : Aws.BaseTypes.String.t option;
  9. latest_cloud_watch_logs_delivery_time : Aws.BaseTypes.DateTime.t option;
  10. latest_digest_delivery_time : Aws.BaseTypes.DateTime.t option;
  11. latest_digest_delivery_error : Aws.BaseTypes.String.t option;
  12. latest_delivery_attempt_time : Aws.BaseTypes.String.t option;
  13. latest_notification_attempt_time : Aws.BaseTypes.String.t option;
  14. latest_notification_attempt_succeeded : Aws.BaseTypes.String.t option;
  15. latest_delivery_attempt_succeeded : Aws.BaseTypes.String.t option;
  16. time_logging_started : Aws.BaseTypes.String.t option;
  17. time_logging_stopped : Aws.BaseTypes.String.t option;
}
val make : ?is_logging:Aws.BaseTypes.Boolean.t -> ?latest_delivery_error:Aws.BaseTypes.String.t -> ?latest_notification_error:Aws.BaseTypes.String.t -> ?latest_delivery_time:Aws.BaseTypes.DateTime.t -> ?latest_notification_time:Aws.BaseTypes.DateTime.t -> ?start_logging_time:Aws.BaseTypes.DateTime.t -> ?stop_logging_time:Aws.BaseTypes.DateTime.t -> ?latest_cloud_watch_logs_delivery_error:Aws.BaseTypes.String.t -> ?latest_cloud_watch_logs_delivery_time:Aws.BaseTypes.DateTime.t -> ?latest_digest_delivery_time:Aws.BaseTypes.DateTime.t -> ?latest_digest_delivery_error:Aws.BaseTypes.String.t -> ?latest_delivery_attempt_time:Aws.BaseTypes.String.t -> ?latest_notification_attempt_time:Aws.BaseTypes.String.t -> ?latest_notification_attempt_succeeded:Aws.BaseTypes.String.t -> ?latest_delivery_attempt_succeeded:Aws.BaseTypes.String.t -> ?time_logging_started:Aws.BaseTypes.String.t -> ?time_logging_stopped:Aws.BaseTypes.String.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t