Class: Aws::S3::Types::CORSConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::CORSConfiguration
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Describes the cross-origin access configuration for objects in an Amazon S3 bucket. For more information, see Enabling Cross-Origin Resource Sharing in the Amazon S3 User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cors_rules ⇒ Array<Types::CORSRule>
A set of origins and methods (cross-origin access that you want to allow).
Instance Attribute Details
#cors_rules ⇒ Array<Types::CORSRule>
A set of origins and methods (cross-origin access that you want to allow). You can add up to 100 rules to the configuration.
481 482 483 484 485 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 481 class CORSConfiguration < Struct.new( :cors_rules) SENSITIVE = [] include Aws::Structure end |