Interface FunctionUrlOriginBaseProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,OriginOptions,OriginProps
- All Known Implementing Classes:
FunctionUrlOriginBaseProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:47.172Z")
@Stability(Stable)
public interface FunctionUrlOriginBaseProps
extends software.amazon.jsii.JsiiSerializable, OriginProps
Properties for configuring a origin using a standard Lambda Functions URLs.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
import software.amazon.awscdk.services.cloudfront.origins.*;
FunctionUrlOriginBaseProps functionUrlOriginBaseProps = FunctionUrlOriginBaseProps.builder()
.connectionAttempts(123)
.connectionTimeout(Duration.minutes(30))
.customHeaders(Map.of(
"customHeadersKey", "customHeaders"))
.originAccessControlId("originAccessControlId")
.originId("originId")
.originPath("originPath")
.originShieldEnabled(false)
.originShieldRegion("originShieldRegion")
.responseCompletionTimeout(Duration.minutes(30))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFunctionUrlOriginBasePropsstatic final classAn implementation forFunctionUrlOriginBaseProps -
Method Summary
Static MethodsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.cloudfront.OriginOptions
getConnectionAttempts, getConnectionTimeout, getCustomHeaders, getOriginAccessControlId, getOriginId, getOriginShieldEnabled, getOriginShieldRegion, getResponseCompletionTimeoutMethods inherited from interface software.amazon.awscdk.services.cloudfront.OriginProps
getOriginPath
-
Method Details
-
builder
- Returns:
- a
FunctionUrlOriginBaseProps.BuilderofFunctionUrlOriginBaseProps
-