Enum LambdaEdgeEventType

java.lang.Object
java.lang.Enum<LambdaEdgeEventType>
software.amazon.awscdk.services.cloudfront.LambdaEdgeEventType
All Implemented Interfaces:
Serializable, Comparable<LambdaEdgeEventType>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:43.721Z") @Stability(Stable) public enum LambdaEdgeEventType extends Enum<LambdaEdgeEventType>
The type of events that a Lambda@Edge function can be invoked in response to.

Example:

 Bucket myBucket;
 // A Lambda@Edge function added to default behavior of a Distribution
 // and triggered on every request
 EdgeFunction myFunc = EdgeFunction.Builder.create(this, "MyFunction")
         .runtime(Runtime.NODEJS_14_X)
         .handler("index.handler")
         .code(Code.fromAsset(join(__dirname, "lambda-handler")))
         .build();
 Distribution.Builder.create(this, "myDist")
         .defaultBehavior(BehaviorOptions.builder()
                 .origin(new S3Origin(myBucket))
                 .edgeLambdas(List.of(EdgeLambda.builder()
                         .functionVersion(myFunc.getCurrentVersion())
                         .eventType(LambdaEdgeEventType.VIEWER_REQUEST)
                         .build()))
                 .build())
         .build();
 
  • Enum Constant Details

    • ORIGIN_REQUEST

      @Stability(Stable) public static final LambdaEdgeEventType ORIGIN_REQUEST
      The origin-request specifies the request to the origin location (e.g. S3).
    • ORIGIN_RESPONSE

      @Stability(Stable) public static final LambdaEdgeEventType ORIGIN_RESPONSE
      The origin-response specifies the response from the origin location (e.g. S3).
    • VIEWER_REQUEST

      @Stability(Stable) public static final LambdaEdgeEventType VIEWER_REQUEST
      The viewer-request specifies the incoming request.
    • VIEWER_RESPONSE

      @Stability(Stable) public static final LambdaEdgeEventType VIEWER_RESPONSE
      The viewer-response specifies the outgoing response.
  • Method Details

    • values

      public static LambdaEdgeEventType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static LambdaEdgeEventType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null