hundreds-airport-72212
07/01/2024, 10:53 AMnew awsx.classic.apigateway.API(
            "balance-api",
            {
                stageName: this.stage,
                routes: [
                    {
                        path: "/v1/balance",
                        method: "GET",
                        eventHandler: getBalanceLambda,
                    },
                ],
            },
        )lemon-scooter-94063
07/02/2024, 4:54 PMaws.apigateway.RestApiawsx.apigateway.APIhundreds-airport-72212
07/05/2024, 11:45 AMnew awsx.classic.apigateway.API("balance-service-api", {
            stageName: this.stage,
            restApiArgs: {
                name: `${this.stage}-balance-service-api`,
                endpointConfiguration: {
                    types: "REGIONAL",
                },
            },
            routes: [...]
})