pub struct AccountStaticWebsiteResult {
pub error404_document: Output<Option<String>>,
pub index_document: Output<Option<String>>,
pub storage_account_id: Output<String>,
}
Fields§
§error404_document: Output<Option<String>>
The absolute path to a custom webpage that should be used when a request is made which does not correspond to an existing file.
index_document: Output<Option<String>>
The webpage that Azure Storage serves for requests to the root of a website or any subfolder. For example, index.html.
storage_account_id: Output<String>
The ID of the Storage Account to set Static Website on. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl Freeze for AccountStaticWebsiteResult
impl RefUnwindSafe for AccountStaticWebsiteResult
impl Send for AccountStaticWebsiteResult
impl Sync for AccountStaticWebsiteResult
impl Unpin for AccountStaticWebsiteResult
impl UnwindSafe for AccountStaticWebsiteResult
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