Module Values.VpcPeeringConnectionStatusSource

Represents status information for a VPC peering connection. Status codes and messages are provided from EC2 (see VpcPeeringConnectionStateReason). Connection status information is also communicated as a fleet event.

Sourcetype nonrec t = {
  1. code : NonZeroAndMaxString.t option;
    (*

    Code indicating the status of a VPC peering connection.

    *)
  2. message : NonZeroAndMaxString.t option;
    (*

    Additional messaging associated with the connection status.

    *)
}
Sourceval make : ?code:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonZeroAndMaxString.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