Module Values.UpdateVpcEndpointRequestSource

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

Sourcetype nonrec t = {
  1. id : VpcEndpointId.t;
    (*

    The unique identifier of the interface endpoint to update.

    *)
  2. addSubnetIds : SubnetIds.t option;
    (*

    The ID of one or more subnets to add to the endpoint.

    *)
  3. removeSubnetIds : SubnetIds.t option;
    (*

    The unique identifiers of the subnets to remove from the endpoint.

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

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

    *)
  5. removeSecurityGroupIds : SecurityGroupIds.t option;
    (*

    The unique identifiers of the security groups to remove from the endpoint.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?addSubnetIds:??? -> ?removeSubnetIds:??? -> ?addSecurityGroupIds:??? -> ?removeSecurityGroupIds:??? -> ?clientToken:??? -> id:VpcEndpointId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of VpcEndpointId.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