Class: Aws::S3::Types::RedirectAllRequestsTo

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 RedirectAllRequestsTo data as a hash:

{
  host_name: "HostName", # required
  protocol: "http", # accepts http, https
}

Specifies the redirect behavior of all requests to a website endpoint of an Amazon S3 bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#host_nameString

Name of the host where requests are redirected.

Returns:

  • (String)


14445
14446
14447
14448
14449
14450
# File 'lib/aws-sdk-s3/types.rb', line 14445

class RedirectAllRequestsTo < Struct.new(
  :host_name,
  :protocol)
  SENSITIVE = []
  include Aws::Structure
end

#protocolString

Protocol to use when redirecting requests. The default is the protocol that is used in the original request.

Returns:

  • (String)


14445
14446
14447
14448
14449
14450
# File 'lib/aws-sdk-s3/types.rb', line 14445

class RedirectAllRequestsTo < Struct.new(
  :host_name,
  :protocol)
  SENSITIVE = []
  include Aws::Structure
end