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