Module Values.AwsElasticsearchDomainVPCOptionsSource

Information that OpenSearch derives based on VPCOptions for the domain.

Sourcetype nonrec t = {
  1. availabilityZones : NonEmptyStringList.t option;
    (*

    The list of Availability Zones associated with the VPC subnets.

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

    The list of security group IDs associated with the VPC endpoints for the domain.

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

    A list of subnet IDs associated with the VPC endpoints for the domain.

    *)
  4. vPCId : NonEmptyString.t option;
    (*

    ID for the VPC.

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