Module Values.EndpointSource

The VPC endpoint object.

Sourcetype nonrec t = {
  1. address : String_.t option;
    (*

    The DNS address of the VPC endpoint.

    *)
  2. port : Integer.t option;
    (*

    The port that Amazon Redshift Serverless listens on.

    *)
  3. vpcEndpoints : VpcEndpointList.t option;
    (*

    An array of VpcEndpoint objects.

    *)
}
Sourceval make : ?address:??? -> ?port:??? -> ?vpcEndpoints:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `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