Module Values.DataSourceVpcConfigurationSource

Provides the configuration information to connect to an Amazon VPC.

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

    A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.

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

    A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.

    *)
}
Sourceval context_ : string
Sourceval make : subnetIds:SubnetIdList.t -> securityGroupIds:SecurityGroupIdList.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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