Struct aws_sdk_lambda::model::Cors
source · #[non_exhaustive]pub struct Cors { /* private fields */ }
Expand description
The cross-origin resource sharing (CORS) settings for your Lambda 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.
Implementations§
source§impl Cors
impl Cors
sourcepub fn allow_credentials(&self) -> Option<bool>
pub fn allow_credentials(&self) -> Option<bool>
Whether to allow cookies or other credentials in requests to your function URL. The default is false
.
sourcepub fn allow_headers(&self) -> Option<&[String]>
pub fn allow_headers(&self) -> Option<&[String]>
The HTTP headers that origins can include in requests to your function URL. For example: Date
, Keep-Alive
, X-Custom-Header
.
sourcepub fn allow_methods(&self) -> Option<&[String]>
pub fn allow_methods(&self) -> Option<&[String]>
The HTTP methods that are allowed when calling your function URL. For example: GET
, POST
, DELETE
, or the wildcard character (*
).
sourcepub fn allow_origins(&self) -> Option<&[String]>
pub fn allow_origins(&self) -> Option<&[String]>
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 using the wildcard character (*
).
sourcepub fn expose_headers(&self) -> Option<&[String]>
pub fn expose_headers(&self) -> Option<&[String]>
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
.