Interface CfnDistribution.LambdaFunctionAssociationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDistribution.LambdaFunctionAssociationProperty.Jsii$Proxy
Enclosing class:
CfnDistribution

@Stability(Stable) public static interface CfnDistribution.LambdaFunctionAssociationProperty extends software.amazon.jsii.JsiiSerializable
A complex type that contains a Lambda@Edge function association.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudfront.*;
 LambdaFunctionAssociationProperty lambdaFunctionAssociationProperty = LambdaFunctionAssociationProperty.builder()
         .eventType("eventType")
         .includeBody(false)
         .lambdaFunctionArn("lambdaFunctionArn")
         .build();
 

See Also: