Module Types.ConnectionNotification

type t = {
connection_notification_id : Aws.BaseTypes.String.t option;
service_id : Aws.BaseTypes.String.t option;
vpc_endpoint_id : Aws.BaseTypes.String.t option;
connection_notification_type : ConnectionNotificationType.t option;
connection_notification_arn : Aws.BaseTypes.String.t option;
connection_events : ValueStringList.t;
connection_notification_state : ConnectionNotificationState.t option;
}
val make : ?⁠connection_notification_id:Aws.BaseTypes.String.t -> ?⁠service_id:Aws.BaseTypes.String.t -> ?⁠vpc_endpoint_id:Aws.BaseTypes.String.t -> ?⁠connection_notification_type:ConnectionNotificationType.t -> ?⁠connection_notification_arn:Aws.BaseTypes.String.t -> ?⁠connection_events:ValueStringList.t -> ?⁠connection_notification_state:ConnectionNotificationState.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