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
}

Instance Attribute Summary collapse

Instance Attribute Details

#host_nameString

Name of the host where requests will be redirected.

Returns:

  • (String)


8223
8224
8225
8226
8227
# File 'lib/aws-sdk-s3/types.rb', line 8223

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

#protocolString

Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

Returns:

  • (String)


8223
8224
8225
8226
8227
# File 'lib/aws-sdk-s3/types.rb', line 8223

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