Module Types.ServiceUpdate
type t
=
{
service_update_name : Aws.BaseTypes.String.t option;
service_update_release_date : Aws.BaseTypes.DateTime.t option;
service_update_end_date : Aws.BaseTypes.DateTime.t option;
service_update_severity : ServiceUpdateSeverity.t option;
service_update_recommended_apply_by_date : Aws.BaseTypes.DateTime.t option;
service_update_status : ServiceUpdateStatus.t option;
service_update_description : Aws.BaseTypes.String.t option;
service_update_type : ServiceUpdateType.t option;
engine : Aws.BaseTypes.String.t option;
engine_version : Aws.BaseTypes.String.t option;
auto_update_after_recommended_apply_by_date : Aws.BaseTypes.Boolean.t option;
estimated_update_time : Aws.BaseTypes.String.t option;
}
val make : ?service_update_name:Aws.BaseTypes.String.t -> ?service_update_release_date:Aws.BaseTypes.DateTime.t -> ?service_update_end_date:Aws.BaseTypes.DateTime.t -> ?service_update_severity:ServiceUpdateSeverity.t -> ?service_update_recommended_apply_by_date:Aws.BaseTypes.DateTime.t -> ?service_update_status:ServiceUpdateStatus.t -> ?service_update_description:Aws.BaseTypes.String.t -> ?service_update_type:ServiceUpdateType.t -> ?engine:Aws.BaseTypes.String.t -> ?engine_version:Aws.BaseTypes.String.t -> ?auto_update_after_recommended_apply_by_date:Aws.BaseTypes.Boolean.t -> ?estimated_update_time: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