HttpIntegration
- class aws_cdk.aws_apigateway.HttpIntegration(url, *, http_method=None, options=None, proxy=None)
Bases:
Integration
You can integrate an API method with an HTTP endpoint using the HTTP proxy integration or the HTTP custom integration,.
With the proxy integration, the setup is simple. You only need to set the HTTP method and the HTTP endpoint URI, according to the backend requirements, if you are not concerned with content encoding or caching.
With the custom integration, the setup is more involved. In addition to the proxy integration setup steps, you need to specify how the incoming request data is mapped to the integration request and how the resulting integration response data is mapped to the method response.
- ExampleMetadata:
infused
Example:
# auth_fn: lambda.Function # books: apigateway.Resource auth = apigateway.RequestAuthorizer(self, "booksAuthorizer", handler=auth_fn, identity_sources=[apigateway.IdentitySource.header("Authorization")] ) books.add_method("GET", apigateway.HttpIntegration("http://amazon.com"), authorizer=auth )
- Parameters:
url (
str
) –http_method (
Optional
[str
]) – HTTP method to use when invoking the backend URL. Default: GEToptions (
Union
[IntegrationOptions
,Dict
[str
,Any
],None
]) – Integration options, such as request/resopnse mapping, content handling, etc. Default: defaults based onIntegrationOptions
defaultsproxy (
Optional
[bool
]) – Determines whether to use proxy integration or custom integration. Default: true
Methods