[][src]Struct rusoto_s3::GetBucketWebsiteOutput

pub struct GetBucketWebsiteOutput {
    pub error_document: Option<ErrorDocument>,
    pub index_document: Option<IndexDocument>,
    pub redirect_all_requests_to: Option<RedirectAllRequestsTo>,
    pub routing_rules: Option<Vec<RoutingRule>>,
}

Fields

error_document: Option<ErrorDocument>

The name of the error document for the website.

index_document: Option<IndexDocument>

The name of the index document for the website.

redirect_all_requests_to: Option<RedirectAllRequestsTo>

Specifies the redirect behavior of all requests to a website endpoint of an Amazon S3 bucket.

routing_rules: Option<Vec<RoutingRule>>

Rules that define when a redirect is applied and the redirect behavior.

Trait Implementations

impl Clone for GetBucketWebsiteOutput[src]

impl Debug for GetBucketWebsiteOutput[src]

impl Default for GetBucketWebsiteOutput[src]

impl PartialEq<GetBucketWebsiteOutput> for GetBucketWebsiteOutput[src]

impl StructuralPartialEq for GetBucketWebsiteOutput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.