@swarmion/serverless-contracts
Version:
Generate and use type-safe contracts between your Serverless services.
8 lines • 409 B
TypeScript
/**
* The integration type: HTTP API or REST API
* For more information, see https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-vs-rest.html
*/
export type ApiGatewayIntegrationType = 'httpApi' | 'restApi';
export type ApiGatewayKey = 'httpApi' | 'http';
export type ApiGatewayAuthorizerType = 'cognito' | 'jwt' | 'lambda' | 'aws_iam' | undefined;
//# sourceMappingURL=constants.d.ts.map