Interface CfnBucket.RoutingRuleProperty

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

@Stability(Stable) public static interface CfnBucket.RoutingRuleProperty extends software.amazon.jsii.JsiiSerializable
Specifies the redirect behavior and when a redirect is applied.

For more information about routing rules, see Configuring advanced conditional redirects in the Amazon S3 User Guide .

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.*;
 RoutingRuleProperty routingRuleProperty = RoutingRuleProperty.builder()
         .redirectRule(RedirectRuleProperty.builder()
                 .hostName("hostName")
                 .httpRedirectCode("httpRedirectCode")
                 .protocol("protocol")
                 .replaceKeyPrefixWith("replaceKeyPrefixWith")
                 .replaceKeyWith("replaceKeyWith")
                 .build())
         // the properties below are optional
         .routingRuleCondition(RoutingRuleConditionProperty.builder()
                 .httpErrorCodeReturnedEquals("httpErrorCodeReturnedEquals")
                 .keyPrefixEquals("keyPrefixEquals")
                 .build())
         .build();
 

See Also: