Interface CfnUrl.CorsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUrl.CorsProperty.Jsii$Proxy
- Enclosing class:
CfnUrl
@Stability(Stable)
public static interface CfnUrl.CorsProperty
extends software.amazon.jsii.JsiiSerializable
The Cross-Origin Resource Sharing (CORS) settings for your function URL. Use CORS to grant access to your function URL from any origin. You can also use CORS to control access for specific HTTP headers and methods in requests to your function URL.
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.lambda.*; CorsProperty corsProperty = CorsProperty.builder() .allowCredentials(false) .allowHeaders(List.of("allowHeaders")) .allowMethods(List.of("allowMethods")) .allowOrigins(List.of("allowOrigins")) .exposeHeaders(List.of("exposeHeaders")) .maxAge(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUrl.CorsProperty
static final class
An implementation forCfnUrl.CorsProperty
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnUrl.CorsProperty.Builder
builder()
default Object
Whether you want to allow cookies or other credentials in requests to your function URL.The HTTP headers that origins can include in requests to your function URL.The HTTP methods that are allowed when calling your function URL.The origins that can access your function URL.The HTTP headers in your function response that you want to expose to origins that call your function URL.default Number
The maximum amount of time, in seconds, that browsers can cache results of a preflight request.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowCredentials
Whether you want to allow cookies or other credentials in requests to your function URL.The default is
false
. -
getAllowHeaders
The HTTP headers that origins can include in requests to your function URL.For example:
Date
,Keep-Alive
,X-Custom-Header
. -
getAllowMethods
The HTTP methods that are allowed when calling your function URL.For example:
GET
,POST
,DELETE
, or the wildcard character (*
). -
getAllowOrigins
The origins that can access your function URL.You can list any number of specific origins, separated by a comma. For example:
https://www.example.com
,http://localhost:60905
.Alternatively, you can grant access to all origins with the wildcard character (
*
). -
getExposeHeaders
The HTTP headers in your function response that you want to expose to origins that call your function URL.For example:
Date
,Keep-Alive
,X-Custom-Header
. -
getMaxAge
The maximum amount of time, in seconds, that browsers can cache results of a preflight request.By default, this is set to
0
, which means the browser will not cache results. -
builder
- Returns:
- a
CfnUrl.CorsProperty.Builder
ofCfnUrl.CorsProperty
-