DeleteUsagePlanKey
Source:
src/AWS/ApiGateway/DeleteUsagePlanKey.ts
Runtime binding for removing an API key from a UsagePlan
(apigateway:DELETE on /usageplans/{id}/keys/{keyId}).
Provide ApiGateway.DeleteUsagePlanKeyHttp on the Function effect to
implement the binding.
Managing plan keys
Section titled “Managing plan keys”// initconst deleteUsagePlanKey = yield* ApiGateway.DeleteUsagePlanKey(plan);
// runtimeyield* deleteUsagePlanKey({ keyId }).pipe( Effect.catchTag("NotFoundException", () => Effect.void),);