pub struct AccountStaticWebsiteArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> AccountStaticWebsiteArgsBuilder<S>
impl<S: State> AccountStaticWebsiteArgsBuilder<S>
sourcepub fn build_struct(self) -> AccountStaticWebsiteArgswhere
S: IsComplete,
pub fn build_struct(self) -> AccountStaticWebsiteArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn error404_document(
self,
value: impl Into<Output<Option<String>>>,
) -> AccountStaticWebsiteArgsBuilder<SetError404Document<S>>where
S::Error404Document: IsUnset,
pub fn error404_document(
self,
value: impl Into<Output<Option<String>>>,
) -> AccountStaticWebsiteArgsBuilder<SetError404Document<S>>where
S::Error404Document: IsUnset,
sourcepub fn maybe_error404_document(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> AccountStaticWebsiteArgsBuilder<SetError404Document<S>>where
S::Error404Document: IsUnset,
pub fn maybe_error404_document(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> AccountStaticWebsiteArgsBuilder<SetError404Document<S>>where
S::Error404Document: IsUnset,
sourcepub fn index_document(
self,
value: impl Into<Output<Option<String>>>,
) -> AccountStaticWebsiteArgsBuilder<SetIndexDocument<S>>where
S::IndexDocument: IsUnset,
pub fn index_document(
self,
value: impl Into<Output<Option<String>>>,
) -> AccountStaticWebsiteArgsBuilder<SetIndexDocument<S>>where
S::IndexDocument: IsUnset,
sourcepub fn maybe_index_document(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> AccountStaticWebsiteArgsBuilder<SetIndexDocument<S>>where
S::IndexDocument: IsUnset,
pub fn maybe_index_document(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> AccountStaticWebsiteArgsBuilder<SetIndexDocument<S>>where
S::IndexDocument: IsUnset,
sourcepub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> AccountStaticWebsiteArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
pub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> AccountStaticWebsiteArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
Required.
The ID of the Storage Account to set Static Website on. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl<S> Freeze for AccountStaticWebsiteArgsBuilder<S>
impl<S> RefUnwindSafe for AccountStaticWebsiteArgsBuilder<S>
impl<S> Send for AccountStaticWebsiteArgsBuilder<S>
impl<S> Sync for AccountStaticWebsiteArgsBuilder<S>
impl<S> Unpin for AccountStaticWebsiteArgsBuilder<S>
impl<S> UnwindSafe for AccountStaticWebsiteArgsBuilder<S>
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