Show / Hide Table of Contents

Class CfnBucket.RoutingRuleConditionProperty

A container for describing a condition that must be met for the specified redirect to apply.

Inheritance
System.Object
CfnBucket.RoutingRuleConditionProperty
Implements
CfnBucket.IRoutingRuleConditionProperty
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.AWS.S3.dll
Syntax (csharp)
public class RoutingRuleConditionProperty : Object, CfnBucket.IRoutingRuleConditionProperty
Syntax (vb)
Public Class RoutingRuleConditionProperty
    Inherits Object
    Implements CfnBucket.IRoutingRuleConditionProperty
Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-routingrules-routingrulecondition.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3;

var routingRuleConditionProperty = new RoutingRuleConditionProperty {
    HttpErrorCodeReturnedEquals = "httpErrorCodeReturnedEquals",
    KeyPrefixEquals = "keyPrefixEquals"
};

Synopsis

Constructors

RoutingRuleConditionProperty()

Properties

HttpErrorCodeReturnedEquals

The HTTP error code when the redirect is applied.

KeyPrefixEquals

The object key name prefix when the redirect is applied.

Constructors

RoutingRuleConditionProperty()

public RoutingRuleConditionProperty()

Properties

HttpErrorCodeReturnedEquals

The HTTP error code when the redirect is applied.

public string HttpErrorCodeReturnedEquals { get; set; }
Property Value

System.String

Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-routingrules-routingrulecondition.html#cfn-s3-websiteconfiguration-routingrules-routingrulecondition-httperrorcodereturnedequals

KeyPrefixEquals

The object key name prefix when the redirect is applied.

public string KeyPrefixEquals { get; set; }
Property Value

System.String

Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-websiteconfiguration-routingrules-routingrulecondition.html#cfn-s3-websiteconfiguration-routingrules-routingrulecondition-keyprefixequals

Implements

CfnBucket.IRoutingRuleConditionProperty
Back to top Generated by DocFX