Module Values.NetworkingSource

The networking configuration for the cluster's control plane.

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

    The ID of the subnet where PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and PCS resources. The subnet must have an available IP address, cannot reside in Outposts, Wavelength, or an Amazon Web Services Local Zone. Example: subnet-abcd1234

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

    The list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets. The following rules are required: Inbound rule 1 Protocol: All Ports: All Source: Self Outbound rule 1 Protocol: All Ports: All Destination: 0.0.0.0/0 (IPv4) or ::/0 (IPv6) Outbound rule 2 Protocol: All Ports: All Destination: Self

    *)
  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