Module Values.ServiceVpcEndpointSource

A container for information about VPC endpoints that were created to other services

Sourcetype nonrec t = {
  1. serviceName : VpcEndpointServiceName.t option;
    (*

    The name of the service for which a VPC endpoint was created.

    *)
  2. vpcEndpointId : String_.t option;
    (*

    The unique identifier of the VPC endpoint that was created.

    *)
}
Sourceval make : ?serviceName:??? -> ?vpcEndpointId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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