Class: Aws::S3::Types::Condition
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Condition
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
When making an API call, you may pass Condition data as a hash:
{
http_error_code_returned_equals: "HttpErrorCodeReturnedEquals",
key_prefix_equals: "KeyPrefixEquals",
}
Instance Attribute Summary collapse
-
#http_error_code_returned_equals ⇒ String
The HTTP error code when the redirect is applied.
-
#key_prefix_equals ⇒ String
The object key name prefix when the redirect is applied.
Instance Attribute Details
#http_error_code_returned_equals ⇒ String
The HTTP error code when the redirect is applied. In the event of an error, if the error code equals this value, then the specified redirect is applied. Required when parent element Condition is specified and sibling KeyPrefixEquals is not specified. If both are specified, then both must be true for the redirect to be applied.
868 869 870 871 872 |
# File 'lib/aws-sdk-s3/types.rb', line 868 class Condition < Struct.new( :http_error_code_returned_equals, :key_prefix_equals) include Aws::Structure end |
#key_prefix_equals ⇒ String
The object key name prefix when the redirect is applied. For example, to redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html. To redirect request for all pages with the prefix docs/, the key prefix will be /docs, which identifies all objects in the docs/ folder. Required when the parent element Condition is specified and sibling HttpErrorCodeReturnedEquals is not specified. If both conditions are specified, both must be true for the redirect to be applied.
868 869 870 871 872 |
# File 'lib/aws-sdk-s3/types.rb', line 868 class Condition < Struct.new( :http_error_code_returned_equals, :key_prefix_equals) include Aws::Structure end |