Class: Aws::SecurityHub::Types::AwsS3BucketWebsiteConfigurationRedirectTo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketWebsiteConfigurationRedirectTo
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsS3BucketWebsiteConfigurationRedirectTo data as a hash:
{
hostname: "NonEmptyString",
protocol: "NonEmptyString",
}
The redirect behavior for requests to the website.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hostname ⇒ String
The name of the host to redirect requests to.
-
#protocol ⇒ String
The protocol to use when redirecting requests.
Instance Attribute Details
#hostname ⇒ String
The name of the host to redirect requests to.
19049 19050 19051 19052 19053 19054 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 19049 class AwsS3BucketWebsiteConfigurationRedirectTo < Struct.new( :hostname, :protocol) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol to use when redirecting requests. By default, uses the same protocol as the original request.
19049 19050 19051 19052 19053 19054 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 19049 class AwsS3BucketWebsiteConfigurationRedirectTo < Struct.new( :hostname, :protocol) SENSITIVE = [] include Aws::Structure end |