sparse-intern-71089
09/08/2022, 7:27 PMswift-fireman-31153
09/08/2022, 7:36 PMconst methodGet = new aws.apigateway.Method("get", {
restApi: openApiId,
resourceId: resource.id,
httpMethod: "GET",
authorization: "CUSTOM",
authorizerId: openApiAuthorizorId,
apiKeyRequired: true,
});
const integration = new aws.apigateway.Integration("integration", {
restApi: openApiId,
resourceId: resource.id,
httpMethod: methodGet.httpMethod,
integrationHttpMethod: methodGet.httpMethod,
type: "HTTP_PROXY",
uri: "<https://httpbin.org/uuid>",
});
sticky-country-73582
09/08/2022, 7:49 PMResource
before each right?swift-fireman-31153
09/08/2022, 8:40 PMswift-fireman-31153
09/08/2022, 8:40 PM