Class WebsiteConfiguration
Website Configuration
public class WebsiteConfiguration
- Inheritance
-
WebsiteConfiguration
- Inherited Members
Constructors
WebsiteConfiguration()
public WebsiteConfiguration()
Properties
ErrorDocument
The ErrorDocument value, an object key name to use when a 4XX class error occurs.
public string ErrorDocument { get; set; }
Property Value
IndexDocumentSuffix
This value is a suffix that is appended to a request that is for a "directory" on the website endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html)
The suffix must not be empty and must not include a slash character.
public string IndexDocumentSuffix { get; set; }
Property Value
RedirectAllRequestsTo
Container for redirect information where all requests will be redirect to. 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 RedirectAllRequestsTo { get; set; }
Property Value
RoutingRules
The list of routing rules that can be used for configuring redirects if certain conditions are meet.
public List<RoutingRule> RoutingRules { get; set; }