Class: Aws::CloudFront::Types::ResponseHeadersPolicyAccessControlAllowMethods
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ResponseHeadersPolicyAccessControlAllowMethods
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
A list of HTTP methods that CloudFront includes as values for the
Access-Control-Allow-Methods
HTTP response header.
For more information about the Access-Control-Allow-Methods
HTTP
response header, see Access-Control-Allow-Methods in the MDN Web
Docs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#items ⇒ Array<String>
The list of HTTP methods.
-
#quantity ⇒ Integer
The number of HTTP methods in the list.
Instance Attribute Details
#items ⇒ Array<String>
The list of HTTP methods. Valid values are:
GET
DELETE
HEAD
OPTIONS
PATCH
POST
PUT
ALL
ALL
is a special value that includes all of the listed HTTP
methods.
10359 10360 10361 10362 10363 10364 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 10359 class ResponseHeadersPolicyAccessControlAllowMethods < Struct.new( :quantity, :items) SENSITIVE = [] include Aws::Structure end |
#quantity ⇒ Integer
The number of HTTP methods in the list.
10359 10360 10361 10362 10363 10364 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 10359 class ResponseHeadersPolicyAccessControlAllowMethods < Struct.new( :quantity, :items) SENSITIVE = [] include Aws::Structure end |