Class: Aws::S3::Types::WebsiteConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::WebsiteConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass WebsiteConfiguration data as a hash:
{
error_document: {
key: "ObjectKey", # required
},
index_document: {
suffix: "Suffix", # required
},
redirect_all_requests_to: {
host_name: "HostName", # required
protocol: "http", # accepts http, https
},
routing_rules: [
{
condition: {
http_error_code_returned_equals: "HttpErrorCodeReturnedEquals",
key_prefix_equals: "KeyPrefixEquals",
},
redirect: { # required
host_name: "HostName",
http_redirect_code: "HttpRedirectCode",
protocol: "http", # accepts http, https
replace_key_prefix_with: "ReplaceKeyPrefixWith",
replace_key_with: "ReplaceKeyWith",
},
},
],
}
Instance Attribute Summary collapse
- #error_document ⇒ Types::ErrorDocument
- #index_document ⇒ Types::IndexDocument
- #redirect_all_requests_to ⇒ Types::RedirectAllRequestsTo
- #routing_rules ⇒ Array<Types::RoutingRule>
Instance Attribute Details
#error_document ⇒ Types::ErrorDocument
8839 8840 8841 8842 8843 8844 8845 |
# File 'lib/aws-sdk-s3/types.rb', line 8839 class WebsiteConfiguration < Struct.new( :error_document, :index_document, :redirect_all_requests_to, :routing_rules) include Aws::Structure end |
#index_document ⇒ Types::IndexDocument
8839 8840 8841 8842 8843 8844 8845 |
# File 'lib/aws-sdk-s3/types.rb', line 8839 class WebsiteConfiguration < Struct.new( :error_document, :index_document, :redirect_all_requests_to, :routing_rules) include Aws::Structure end |
#redirect_all_requests_to ⇒ Types::RedirectAllRequestsTo
8839 8840 8841 8842 8843 8844 8845 |
# File 'lib/aws-sdk-s3/types.rb', line 8839 class WebsiteConfiguration < Struct.new( :error_document, :index_document, :redirect_all_requests_to, :routing_rules) include Aws::Structure end |
#routing_rules ⇒ Array<Types::RoutingRule>
8839 8840 8841 8842 8843 8844 8845 |
# File 'lib/aws-sdk-s3/types.rb', line 8839 class WebsiteConfiguration < Struct.new( :error_document, :index_document, :redirect_all_requests_to, :routing_rules) include Aws::Structure end |