HttpIntegration
- class aws_cdk.aws_apigatewayv2.HttpIntegration(scope, id, *, http_api, integration_type, connection_id=None, connection_type=None, credentials=None, integration_subtype=None, integration_uri=None, method=None, parameter_mapping=None, payload_format_version=None, secure_server_name=None, timeout=None)
Bases:
Resource
The integration for an API route.
- Resource:
AWS::ApiGatewayV2::Integration
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk as cdk from aws_cdk import aws_apigatewayv2 as apigatewayv2 # http_api: apigatewayv2.HttpApi # integration_credentials: apigatewayv2.IntegrationCredentials # parameter_mapping: apigatewayv2.ParameterMapping # payload_format_version: apigatewayv2.PayloadFormatVersion http_integration = apigatewayv2.HttpIntegration(self, "MyHttpIntegration", http_api=http_api, integration_type=apigatewayv2.HttpIntegrationType.HTTP_PROXY, # the properties below are optional connection_id="connectionId", connection_type=apigatewayv2.HttpConnectionType.VPC_LINK, credentials=integration_credentials, integration_subtype=apigatewayv2.HttpIntegrationSubtype.EVENTBRIDGE_PUT_EVENTS, integration_uri="integrationUri", method=apigatewayv2.HttpMethod.ANY, parameter_mapping=parameter_mapping, payload_format_version=payload_format_version, secure_server_name="secureServerName", timeout=cdk.Duration.minutes(30) )
- Parameters:
scope (
Construct
) –id (
str
) –http_api (
IHttpApi
) – The HTTP API to which this integration should be bound.integration_type (
HttpIntegrationType
) – Integration type.connection_id (
Optional
[str
]) – The ID of the VPC link for a private integration. Supported only for HTTP APIs. Default: - undefinedconnection_type (
Optional
[HttpConnectionType
]) – The type of the network connection to the integration endpoint. Default: HttpConnectionType.INTERNETcredentials (
Optional
[IntegrationCredentials
]) – The credentials with which to invoke the integration. Default: - no credentials, use resource-based permissions on supported AWS servicesintegration_subtype (
Optional
[HttpIntegrationSubtype
]) – Integration subtype. Used for AWS Service integrations, specifies the target of the integration. Default: - none, required if nointegrationUri
is defined.integration_uri (
Optional
[str
]) – Integration URI. This will be the function ARN in the case ofHttpIntegrationType.AWS_PROXY
, or HTTP URL in the case ofHttpIntegrationType.HTTP_PROXY
. Default: - none, required if nointegrationSubtype
is defined.method (
Optional
[HttpMethod
]) – The HTTP method to use when calling the underlying HTTP proxy. Default: - none. required if the integration type isHttpIntegrationType.HTTP_PROXY
.parameter_mapping (
Optional
[ParameterMapping
]) – Specifies how to transform HTTP requests before sending them to the backend. Default: undefined requests are sent to the backend unmodifiedpayload_format_version (
Optional
[PayloadFormatVersion
]) – The version of the payload format. Default: - defaults to latest in the case of HttpIntegrationType.AWS_PROXY`, irrelevant otherwise.secure_server_name (
Optional
[str
]) – Specifies the TLS configuration for a private integration. Default: undefined private integration traffic will use HTTP protocoltimeout (
Optional
[Duration
]) – The maximum amount of time an integration will run before it returns without a response. Must be between 50 milliseconds and 29 seconds. Default: Duration.seconds(29)
Methods
- apply_removal_policy(policy)
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
).- Parameters:
policy (
RemovalPolicy
) –- Return type:
None
- to_string()
Returns a string representation of this construct.
- Return type:
str
Attributes
- env
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
- http_api
The HTTP API associated with this integration.
- integration_id
Id of the integration.
- node
The tree node.
- stack
The stack in which this resource is defined.
Static Methods
- classmethod is_construct(x)
Checks if
x
is a construct.Use this method instead of
instanceof
to properly detectConstruct
instances, even when the construct library is symlinked.Explanation: in JavaScript, multiple copies of the
constructs
library on disk are seen as independent, completely different libraries. As a consequence, the classConstruct
in each copy of theconstructs
library is seen as a different class, and an instance of one class will not test asinstanceof
the other class.npm install
will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of theconstructs
library can be accidentally installed, andinstanceof
will behave unpredictably. It is safest to avoid usinginstanceof
, and using this type-testing method instead.- Parameters:
x (
Any
) – Any object.- Return type:
bool
- Returns:
true if
x
is an object created from a class which extendsConstruct
.
- classmethod is_owned_resource(construct)
Returns true if the construct was created by CDK, and false otherwise.
- Parameters:
construct (
IConstruct
) –- Return type:
bool
- classmethod is_resource(construct)
Check whether the given construct is a Resource.
- Parameters:
construct (
IConstruct
) –- Return type:
bool