Interface FunctionUrlOriginProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,OriginOptions
,OriginProps
- All Known Subinterfaces:
FunctionUrlOriginWithOACProps
- All Known Implementing Classes:
FunctionUrlOriginProps.Jsii$Proxy
,FunctionUrlOriginWithOACProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-25T11:29:03.227Z")
@Stability(Stable)
public interface FunctionUrlOriginProps
extends software.amazon.jsii.JsiiSerializable, OriginProps
Properties for a Lambda Function URL Origin.
Example:
import software.amazon.awscdk.services.lambda.*; Function fn; FunctionUrl fnUrl = fn.addFunctionUrl(FunctionUrlOptions.builder().authType(FunctionUrlAuthType.NONE).build()); Distribution.Builder.create(this, "Distribution") .defaultBehavior(BehaviorOptions.builder() .origin(FunctionUrlOrigin.Builder.create(fnUrl) .readTimeout(Duration.seconds(30)) .responseCompletionTimeout(Duration.seconds(90)) .keepaliveTimeout(Duration.seconds(45)) .build()) .build()) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forFunctionUrlOriginProps
static final class
An implementation forFunctionUrlOriginProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.cloudfront.OriginOptions
getConnectionAttempts, getConnectionTimeout, getCustomHeaders, getOriginAccessControlId, getOriginId, getOriginShieldEnabled, getOriginShieldRegion, getResponseCompletionTimeout
Methods inherited from interface software.amazon.awscdk.services.cloudfront.OriginProps
getOriginPath
-
Method Details
-
getKeepaliveTimeout
Specifies how long, in seconds, CloudFront persists its connection to the origin.The valid range is from 1 to 180 seconds, inclusive.
Note that values over 60 seconds are possible only after a limit increase request for the origin response timeout quota has been approved in the target account; otherwise, values over 60 seconds will produce an error at deploy time.
Default: Duration.seconds(5)
-
getReadTimeout
Specifies how long, in seconds, CloudFront waits for a response from the origin.The valid range is from 1 to 180 seconds, inclusive.
Note that values over 60 seconds are possible only after a limit increase request for the origin response timeout quota has been approved in the target account; otherwise, values over 60 seconds will produce an error at deploy time.
Default: Duration.seconds(30)
-
builder
- Returns:
- a
FunctionUrlOriginProps.Builder
ofFunctionUrlOriginProps
-