Interface CfnBucket.RoutingRuleConditionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBucket.RoutingRuleConditionProperty.Jsii$Proxy
Enclosing class:
CfnBucket

@Stability(Stable) public static interface CfnBucket.RoutingRuleConditionProperty extends software.amazon.jsii.JsiiSerializable
A container for describing a condition that must be met for the specified redirect to apply.

For example, 1. If request is for pages in the /docs folder, redirect to the /documents folder. 2. If request results in HTTP error 4xx, redirect request to another host where you might process the error.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.s3.*;
 RoutingRuleConditionProperty routingRuleConditionProperty = RoutingRuleConditionProperty.builder()
         .httpErrorCodeReturnedEquals("httpErrorCodeReturnedEquals")
         .keyPrefixEquals("keyPrefixEquals")
         .build();
 

See Also: