class Amazonite::Lambda::Cors

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.

Included Modules

Defined in:

lambda/cors.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(allow_credentials : Bool | Nil = nil, allow_headers : Array(String) | Nil = nil, allow_methods : Array(String) | Nil = nil, allow_origins : Array(String) | Nil = nil, expose_headers : Array(String) | Nil = nil, max_age : Int32 | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def allow_credentials : Bool | Nil #

Whether to allow cookies or other credentials in requests to your function URL. The default is false.


[View source]
def allow_credentials=(allow_credentials : Bool | Nil) #

Whether to allow cookies or other credentials in requests to your function URL. The default is false.


[View source]
def allow_headers : Array(String) | Nil #

The HTTP headers that origins can include in requests to your function URL. For example: Date, Keep-Alive, X-Custom-Header.


[View source]
def allow_headers=(allow_headers : Array(String) | Nil) #

The HTTP headers that origins can include in requests to your function URL. For example: Date, Keep-Alive, X-Custom-Header.


[View source]
def allow_methods : Array(String) | Nil #

The HTTP methods that are allowed when calling your function URL. For example: GET, POST, DELETE, or the wildcard character (*).


[View source]
def allow_methods=(allow_methods : Array(String) | Nil) #

The HTTP methods that are allowed when calling your function URL. For example: GET, POST, DELETE, or the wildcard character (*).


[View source]
def allow_origins : Array(String) | Nil #

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 (*).


[View source]
def allow_origins=(allow_origins : Array(String) | Nil) #

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 (*).


[View source]
def expose_headers : Array(String) | Nil #

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.


[View source]
def expose_headers=(expose_headers : Array(String) | Nil) #

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.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def max_age : Int32 | Nil #

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.


[View source]
def max_age=(max_age : Int32 | Nil) #

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.


[View source]
def validate! : Nil #

[View source]