Interface CfnBucket.RoutingRuleConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucket.RoutingRuleConditionProperty.Jsii$Proxy
- Enclosing class:
CfnBucket
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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBucket.RoutingRuleConditionProperty
static final class
An implementation forCfnBucket.RoutingRuleConditionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHttpErrorCodeReturnedEquals
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 siblingKeyPrefixEquals
is not specified. If both are specified, then both must be true for the redirect to be applied.- See Also:
-
getKeyPrefixEquals
The object key name prefix when the redirect is applied.For example, to redirect requests for
ExamplePage.html
, the key prefix will beExamplePage.html
. To redirect request for all pages with the prefixdocs/
, the key prefix will be/docs
, which identifies all objects in the docs/ folder.Required when the parent element
Condition
is specified and siblingHttpErrorCodeReturnedEquals
is not specified. If both conditions are specified, both must be true for the redirect to be applied.- See Also:
-
builder
-