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 object key name of the website error document to use for 4XX class errors.
index_document: Option<IndexDocument>The name of the index document for the website (for example index.html).
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§
Source§impl Clone for GetBucketWebsiteOutput
impl Clone for GetBucketWebsiteOutput
Source§fn clone(&self) -> GetBucketWebsiteOutput
fn clone(&self) -> GetBucketWebsiteOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetBucketWebsiteOutput
impl Debug for GetBucketWebsiteOutput
Source§impl Default for GetBucketWebsiteOutput
impl Default for GetBucketWebsiteOutput
Source§fn default() -> GetBucketWebsiteOutput
fn default() -> GetBucketWebsiteOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetBucketWebsiteOutput
impl PartialEq for GetBucketWebsiteOutput
impl StructuralPartialEq for GetBucketWebsiteOutput
Auto Trait Implementations§
impl Freeze for GetBucketWebsiteOutput
impl RefUnwindSafe for GetBucketWebsiteOutput
impl Send for GetBucketWebsiteOutput
impl Sync for GetBucketWebsiteOutput
impl Unpin for GetBucketWebsiteOutput
impl UnwindSafe for GetBucketWebsiteOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more