Documentation@notation/awsAPI GatewayAPIapi api(ApiConfig) => Api Creates an API Gateway. Parameters type ApiConfig = { name: string; // the name of the API Gateway }; Example infra/api.tsimport { api } from "@notation/aws/api-gateway"; const myApi = api({ name: "my-api" });API GatewayRouter