Module Values.VPCDerivedInfoSource

Options to specify the subnets and security groups for VPC endpoint. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

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

    The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

    *)
  2. subnetIds : StringList.t option;
    (*

    Specifies the subnets for VPC endpoint.

    *)
  3. availabilityZones : StringList.t option;
    (*

    The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

    *)
  4. securityGroupIds : StringList.t option;
    (*

    Specifies the security groups for VPC endpoint.

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