Module Values.VpcConfigurationSource

Configuration details about the network where the Privatelink endpoint of the cluster resides.

Sourcetype nonrec t = {
  1. vpcId : VpcIdString.t option;
    (*

    The identifier of the VPC endpoint.

    *)
  2. securityGroupIds : SecurityGroupIdList.t option;
    (*

    The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.

    *)
  3. subnetIds : SubnetIdList.t option;
    (*

    The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.

    *)
  4. ipAddressType : IPAddressType.t option;
    (*

    The IP address type for cluster network configuration parameters. The following type is available: IP_V4 – IP address version 4

    *)
}
Sourceval make : ?vpcId:??? -> ?securityGroupIds:??? -> ?subnetIds:??? -> ?ipAddressType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SecurityGroupIdString.t ] list | `String of VpcIdString.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