Module Values.NetworkingRequestSource

The networking configuration for the cluster's control plane.

Sourcetype nonrec t = {
  1. subnetIds : SubnetIdList.t option;
    (*

    The list of subnet IDs where PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and PCS resources. Subnet IDs have the form subnet-0123456789abcdef0. Subnets can't be in Outposts, Wavelength or an Amazon Web Services Local Zone. PCS currently supports only 1 subnet in this list.

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

    A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.

    *)
  3. networkType : NetworkType.t option;
    (*

    The IP address version the cluster uses. The default is IPV4.

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