#[non_exhaustive]pub struct DeleteResourceDataSyncInput {
pub sync_name: Option<String>,
pub sync_type: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.sync_name: Option<String>
The name of the configuration to delete.
sync_type: Option<String>
Specify the type of resource data sync to delete.
Implementations§
source§impl DeleteResourceDataSyncInput
impl DeleteResourceDataSyncInput
sourcepub fn builder() -> DeleteResourceDataSyncInputBuilder
pub fn builder() -> DeleteResourceDataSyncInputBuilder
Creates a new builder-style object to manufacture DeleteResourceDataSyncInput
.
Trait Implementations§
source§impl Clone for DeleteResourceDataSyncInput
impl Clone for DeleteResourceDataSyncInput
source§fn clone(&self) -> DeleteResourceDataSyncInput
fn clone(&self) -> DeleteResourceDataSyncInput
Returns a copy 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 DeleteResourceDataSyncInput
impl Debug for DeleteResourceDataSyncInput
source§impl PartialEq for DeleteResourceDataSyncInput
impl PartialEq for DeleteResourceDataSyncInput
source§fn eq(&self, other: &DeleteResourceDataSyncInput) -> bool
fn eq(&self, other: &DeleteResourceDataSyncInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteResourceDataSyncInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteResourceDataSyncInput
impl Send for DeleteResourceDataSyncInput
impl Sync for DeleteResourceDataSyncInput
impl Unpin for DeleteResourceDataSyncInput
impl UnwindSafe for DeleteResourceDataSyncInput
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