Class: Aws::ApiGatewayV2::Types::Cors

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb

Overview

Represents a CORS configuration. Supported only for HTTP APIs. See Configuring CORS for more information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allow_credentialsBoolean

Specifies whether credentials are included in the CORS request. Supported only for HTTP APIs.

Returns:

  • (Boolean)


422
423
424
425
426
427
428
429
430
431
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 422

class Cors < Struct.new(
  :allow_credentials,
  :allow_headers,
  :allow_methods,
  :allow_origins,
  :expose_headers,
  :max_age)
  SENSITIVE = []
  include Aws::Structure
end

#allow_headersArray<String>

Represents a collection of allowed headers. Supported only for HTTP APIs.

Returns:

  • (Array<String>)


422
423
424
425
426
427
428
429
430
431
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 422

class Cors < Struct.new(
  :allow_credentials,
  :allow_headers,
  :allow_methods,
  :allow_origins,
  :expose_headers,
  :max_age)
  SENSITIVE = []
  include Aws::Structure
end

#allow_methodsArray<String>

Represents a collection of allowed HTTP methods. Supported only for HTTP APIs.

Returns:

  • (Array<String>)


422
423
424
425
426
427
428
429
430
431
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 422

class Cors < Struct.new(
  :allow_credentials,
  :allow_headers,
  :allow_methods,
  :allow_origins,
  :expose_headers,
  :max_age)
  SENSITIVE = []
  include Aws::Structure
end

#allow_originsArray<String>

Represents a collection of allowed origins. Supported only for HTTP APIs.

Returns:

  • (Array<String>)


422
423
424
425
426
427
428
429
430
431
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 422

class Cors < Struct.new(
  :allow_credentials,
  :allow_headers,
  :allow_methods,
  :allow_origins,
  :expose_headers,
  :max_age)
  SENSITIVE = []
  include Aws::Structure
end

#expose_headersArray<String>

Represents a collection of exposed headers. Supported only for HTTP APIs.

Returns:

  • (Array<String>)


422
423
424
425
426
427
428
429
430
431
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 422

class Cors < Struct.new(
  :allow_credentials,
  :allow_headers,
  :allow_methods,
  :allow_origins,
  :expose_headers,
  :max_age)
  SENSITIVE = []
  include Aws::Structure
end

#max_ageInteger

The number of seconds that the browser should cache preflight request results. Supported only for HTTP APIs.

Returns:

  • (Integer)


422
423
424
425
426
427
428
429
430
431
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 422

class Cors < Struct.new(
  :allow_credentials,
  :allow_headers,
  :allow_methods,
  :allow_origins,
  :expose_headers,
  :max_age)
  SENSITIVE = []
  include Aws::Structure
end