HttpIntegrationProps¶
-
class
aws_cdk.aws_apigateway.
HttpIntegrationProps
(*, http_method=None, options=None, proxy=None)¶ Bases:
object
- Parameters
http_method (
Optional
[str
]) – HTTP method to use when invoking the backend URL. Default: GEToptions (
Optional
[IntegrationOptions
]) – 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
Attributes
-
http_method
¶ HTTP method to use when invoking the backend URL.
- Default
GET
- Return type
Optional
[str
]
-
options
¶ Integration options, such as request/resopnse mapping, content handling, etc.
- Default
defaults based on
IntegrationOptions
defaults- Return type
Optional
[IntegrationOptions
]
-
proxy
¶ Determines whether to use proxy integration or custom integration.
- Default
true
- Return type
Optional
[bool
]