Class: Aws::CloudFront::Types::ResponseHeadersPolicyAccessControlAllowHeaders
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ResponseHeadersPolicyAccessControlAllowHeaders
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
A list of HTTP header names that CloudFront includes as values for the
Access-Control-Allow-Headers
HTTP response header.
For more information about the Access-Control-Allow-Headers
HTTP
response header, see Access-Control-Allow-Headers in the MDN Web
Docs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#items ⇒ Array<String>
The list of HTTP header names.
-
#quantity ⇒ Integer
The number of HTTP header names in the list.
Instance Attribute Details
#items ⇒ Array<String>
The list of HTTP header names. You can specify *
to allow all
headers.
10308 10309 10310 10311 10312 10313 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 10308 class ResponseHeadersPolicyAccessControlAllowHeaders < Struct.new( :quantity, :items) SENSITIVE = [] include Aws::Structure end |
#quantity ⇒ Integer
The number of HTTP header names in the list.
10308 10309 10310 10311 10312 10313 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 10308 class ResponseHeadersPolicyAccessControlAllowHeaders < Struct.new( :quantity, :items) SENSITIVE = [] include Aws::Structure end |