Skip to content

GetApiKeys

Source: src/AWS/ApiGateway/GetApiKeys.ts

Runtime binding for listing API Gateway API keys (apigateway:GET on /apikeys). Account-scoped — takes no resource.

Provide ApiGateway.GetApiKeysHttp on the Function effect to implement the binding.

// init
const getApiKeys = yield* ApiGateway.GetApiKeys();
// runtime
const page = yield* getApiKeys({ nameQuery: "customer-", limit: 100 });