DeleteApiKey
Source:
src/AWS/ApiGateway/DeleteApiKey.ts
Runtime binding for deleting an API Gateway API key
(apigateway:DELETE on /apikeys/{id}). Account-scoped — takes no
resource.
Provide ApiGateway.DeleteApiKeyHttp on the Function effect to
implement the binding.
Managing API keys
Section titled “Managing API keys”// initconst deleteApiKey = yield* ApiGateway.DeleteApiKey();
// runtimeyield* deleteApiKey({ apiKey: keyId }).pipe( Effect.catchTag("NotFoundException", () => Effect.void),);