Class: Aws::Lambda::Types::Cors
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::Cors
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allow_credentials ⇒ Boolean
Whether to allow cookies or other credentials in requests to your function URL.
-
#allow_headers ⇒ Array<String>
The HTTP headers that origins can include in requests to your function URL.
-
#allow_methods ⇒ Array<String>
The HTTP methods that are allowed when calling your function URL.
-
#allow_origins ⇒ Array<String>
The origins that can access your function URL.
-
#expose_headers ⇒ Array<String>
The HTTP headers in your function response that you want to expose to origins that call your function URL.
-
#max_age ⇒ Integer
The maximum amount of time, in seconds, that web browsers can cache results of a preflight request.
Instance Attribute Details
#allow_credentials ⇒ Boolean
Whether to allow cookies or other credentials in requests to your
function URL. The default is false.
574 575 576 577 578 579 580 581 582 583 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 574 class Cors < Struct.new( :allow_credentials, :allow_headers, :allow_methods, :allow_origins, :expose_headers, :max_age) SENSITIVE = [] include Aws::Structure end |
#allow_headers ⇒ Array<String>
The HTTP headers that origins can include in requests to your
function URL. For example: Date, Keep-Alive, X-Custom-Header.
574 575 576 577 578 579 580 581 582 583 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 574 class Cors < Struct.new( :allow_credentials, :allow_headers, :allow_methods, :allow_origins, :expose_headers, :max_age) SENSITIVE = [] include Aws::Structure end |
#allow_methods ⇒ Array<String>
The HTTP methods that are allowed when calling your function URL.
For example: GET, POST, DELETE, or the wildcard character
(*).
574 575 576 577 578 579 580 581 582 583 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 574 class Cors < Struct.new( :allow_credentials, :allow_headers, :allow_methods, :allow_origins, :expose_headers, :max_age) SENSITIVE = [] include Aws::Structure end |
#allow_origins ⇒ Array<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 (*).
574 575 576 577 578 579 580 581 582 583 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 574 class Cors < Struct.new( :allow_credentials, :allow_headers, :allow_methods, :allow_origins, :expose_headers, :max_age) SENSITIVE = [] include Aws::Structure end |
#expose_headers ⇒ Array<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.
574 575 576 577 578 579 580 581 582 583 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 574 class Cors < Struct.new( :allow_credentials, :allow_headers, :allow_methods, :allow_origins, :expose_headers, :max_age) SENSITIVE = [] include Aws::Structure end |
#max_age ⇒ Integer
The maximum amount of time, in seconds, that web browsers can cache
results of a preflight request. By default, this is set to 0,
which means that the browser doesn't cache results.
574 575 576 577 578 579 580 581 582 583 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 574 class Cors < Struct.new( :allow_credentials, :allow_headers, :allow_methods, :allow_origins, :expose_headers, :max_age) SENSITIVE = [] include Aws::Structure end |