distilled-aws 0.0.17 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/services/ec2.ts
CHANGED
|
@@ -73529,12 +73529,12 @@ export const deleteVpcEndpoints: (
|
|
|
73529
73529
|
input: DeleteVpcEndpointsRequest,
|
|
73530
73530
|
) => effect.Effect<
|
|
73531
73531
|
DeleteVpcEndpointsResult,
|
|
73532
|
-
ParseError | CommonErrors,
|
|
73532
|
+
InvalidVpcEndpointIdNotFound | ParseError | CommonErrors,
|
|
73533
73533
|
Credentials | Rgn | HttpClient.HttpClient
|
|
73534
73534
|
> = /*@__PURE__*/ /*#__PURE__*/ API.make(() => ({
|
|
73535
73535
|
input: DeleteVpcEndpointsRequest,
|
|
73536
73536
|
output: DeleteVpcEndpointsResult,
|
|
73537
|
-
errors: [ParseError],
|
|
73537
|
+
errors: [InvalidVpcEndpointIdNotFound, ParseError],
|
|
73538
73538
|
}));
|
|
73539
73539
|
/**
|
|
73540
73540
|
* Deletes the specified VPC endpoint service configurations. Before you can delete
|