aws-cdk-lib.aws_s3.CfnBucket.RoutingRuleConditionProperty

interface RoutingRuleConditionProperty

LanguageType name
.NETAmazon.CDK.AWS.S3.CfnBucket.RoutingRuleConditionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_RoutingRuleConditionProperty
Javasoftware.amazon.awscdk.services.s3.CfnBucket.RoutingRuleConditionProperty
Pythonaws_cdk.aws_s3.CfnBucket.RoutingRuleConditionProperty
TypeScript aws-cdk-lib » aws_s3 » CfnBucket » RoutingRuleConditionProperty

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 { aws_s3 as s3 } from 'aws-cdk-lib';
const routingRuleConditionProperty: s3.CfnBucket.RoutingRuleConditionProperty = {
  httpErrorCodeReturnedEquals: 'httpErrorCodeReturnedEquals',
  keyPrefixEquals: 'keyPrefixEquals',
};

Properties

NameTypeDescription
httpErrorCodeReturnedEquals?stringThe HTTP error code when the redirect is applied.
keyPrefixEquals?stringThe object key name prefix when the redirect is applied.

httpErrorCodeReturnedEquals?

Type: string (optional)

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.


keyPrefixEquals?

Type: string (optional)

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.