Class: Aws::S3::Types::CORSConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass CORSConfiguration data as a hash:

{
  cors_rules: [ # required
    {
      allowed_headers: ["AllowedHeader"],
      allowed_methods: ["AllowedMethod"], # required
      allowed_origins: ["AllowedOrigin"], # required
      expose_headers: ["ExposeHeader"],
      max_age_seconds: 1,
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#cors_rulesArray<Types::CORSRule>

Returns:



488
489
490
491
# File 'lib/aws-sdk-s3/types.rb', line 488

class CORSConfiguration < Struct.new(
  :cors_rules)
  include Aws::Structure
end