@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-22T19:35:46.614Z") public enum LambdaEdgeEventType extends java.lang.Enum<LambdaEdgeEventType>
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 and Description |
---|
ORIGIN_REQUEST
The origin-request specifies the request to the origin location (e.g.
|
ORIGIN_RESPONSE
The origin-response specifies the response from the origin location (e.g.
|
VIEWER_REQUEST
The viewer-request specifies the incoming request.
|
VIEWER_RESPONSE
The viewer-response specifies the outgoing response.
|
Modifier and Type | Method and Description |
---|---|
static LambdaEdgeEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LambdaEdgeEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LambdaEdgeEventType ORIGIN_REQUEST
public static final LambdaEdgeEventType ORIGIN_RESPONSE
public static final LambdaEdgeEventType VIEWER_REQUEST
public static final LambdaEdgeEventType VIEWER_RESPONSE
public static LambdaEdgeEventType[] values()
for (LambdaEdgeEventType c : LambdaEdgeEventType.values()) System.out.println(c);
public static LambdaEdgeEventType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null