Module Values.CreateVpcEndpointRequestSource

Creates an OpenSearch Serverless-managed interface VPC endpoint. For more information, see Access Amazon OpenSearch Serverless using an interface endpoint.

Sourcetype nonrec t = {
  1. name : VpcEndpointName.t;
    (*

    The name of the interface endpoint.

    *)
  2. vpcId : VpcId.t;
    (*

    The ID of the VPC from which you'll access OpenSearch Serverless.

    *)
  3. subnetIds : SubnetIds.t;
    (*

    The ID of one or more subnets from which you'll access OpenSearch Serverless.

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

    The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.

    *)
  5. clientToken : ClientToken.t option;
    (*

    Unique, case-sensitive identifier to ensure idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?securityGroupIds:??? -> ?clientToken:??? -> name:VpcEndpointName.t -> vpcId:VpcId.t -> subnetIds:SubnetIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of VpcEndpointName.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