/*
* Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
namespace Amazon.S3.Model
{
/// Routing Rule
///
public class RoutingRule
{
private RoutingRuleCondition condition;
private RoutingRuleRedirect redirect;
///
/// 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.
///
///
public RoutingRuleCondition Condition
{
get { return this.condition; }
set { this.condition = value; }
}
// Check to see if Condition property is set
internal bool IsSetCondition()
{
return this.condition != null;
}
///
/// Container for redirect information. You can redirect requests to another host, to another page, or with another protocol. In the event of an
/// error, you can can specify a different error code to return.
///
///
public RoutingRuleRedirect Redirect
{
get { return this.redirect; }
set { this.redirect = value; }
}
// Check to see if Redirect property is set
internal bool IsSetRedirect()
{
return this.redirect != null;
}
}
}