interface LambdaFunctionAssociation
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CloudFront.LambdaFunctionAssociation |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#LambdaFunctionAssociation |
![]() | software.amazon.awscdk.services.cloudfront.LambdaFunctionAssociation |
![]() | aws_cdk.aws_cloudfront.LambdaFunctionAssociation |
![]() | aws-cdk-lib » aws_cloudfront » LambdaFunctionAssociation |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
import { aws_lambda as lambda } from 'aws-cdk-lib';
declare const version: lambda.Version;
const lambdaFunctionAssociation: cloudfront.LambdaFunctionAssociation = {
eventType: cloudfront.LambdaEdgeEventType.ORIGIN_REQUEST,
lambdaFunction: version,
// the properties below are optional
includeBody: false,
};
Properties
Name | Type | Description |
---|---|---|
event | Lambda | The lambda event type defines at which event the lambda is called during the request lifecycle. |
lambda | IVersion | A version of the lambda to associate. |
include | boolean | Allows a Lambda function to have read access to the body content. |
eventType
Type:
Lambda
The lambda event type defines at which event the lambda is called during the request lifecycle.
lambdaFunction
Type:
IVersion
A version of the lambda to associate.
includeBody?
Type:
boolean
(optional, default: false)
Allows a Lambda function to have read access to the body content.
Only valid for "request" event types (ORIGIN_REQUEST
or VIEWER_REQUEST
).