Module Values.VPCDerivedInfoSource

Information about the subnets and security groups for an Amazon OpenSearch Service domain provisioned within a virtual private cloud (VPC). For more information, see Launching your Amazon OpenSearch Service domains using a VPC. This information only exists if the domain was created with VPCOptions.

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

    The ID for your VPC. Amazon VPC generates this value when you create a VPC.

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

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

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

    The list of Availability Zones associated with the VPC subnets.

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

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

    *)
  5. egressEnabled : Boolean.t option;
    (*

    Indicates whether egress traffic from the domain is routed through the customer VPC. When true, outbound traffic flows through the VPC. When false, outbound traffic goes through the public internet.

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