pub struct GetTableArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetTableArgsBuilder<S>
impl<S: State> GetTableArgsBuilder<S>
sourcepub fn build_struct(self) -> GetTableArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetTableArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn name(
self,
value: impl Into<Output<String>>,
) -> GetTableArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<String>>,
) -> GetTableArgsBuilder<SetName<S>>where
S::Name: IsUnset,
Required.
The name of the Table.
sourcepub fn storage_account_name(
self,
value: impl Into<Output<String>>,
) -> GetTableArgsBuilder<SetStorageAccountName<S>>where
S::StorageAccountName: IsUnset,
pub fn storage_account_name(
self,
value: impl Into<Output<String>>,
) -> GetTableArgsBuilder<SetStorageAccountName<S>>where
S::StorageAccountName: IsUnset,
Required.
The name of the Storage Account where the Table exists.
Auto Trait Implementations§
impl<S> Freeze for GetTableArgsBuilder<S>
impl<S> RefUnwindSafe for GetTableArgsBuilder<S>
impl<S> Send for GetTableArgsBuilder<S>
impl<S> Sync for GetTableArgsBuilder<S>
impl<S> Unpin for GetTableArgsBuilder<S>
impl<S> UnwindSafe for GetTableArgsBuilder<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