#[non_exhaustive]pub struct DeleteReplicatorInput {
pub current_version: Option<String>,
pub replicator_arn: 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.current_version: Option<String>
The current version of the replicator.
replicator_arn: Option<String>
The Amazon Resource Name (ARN) of the replicator to be deleted.
Implementations§
source§impl DeleteReplicatorInput
impl DeleteReplicatorInput
sourcepub fn current_version(&self) -> Option<&str>
pub fn current_version(&self) -> Option<&str>
The current version of the replicator.
sourcepub fn replicator_arn(&self) -> Option<&str>
pub fn replicator_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the replicator to be deleted.
source§impl DeleteReplicatorInput
impl DeleteReplicatorInput
sourcepub fn builder() -> DeleteReplicatorInputBuilder
pub fn builder() -> DeleteReplicatorInputBuilder
Creates a new builder-style object to manufacture DeleteReplicatorInput
.
Trait Implementations§
source§impl Clone for DeleteReplicatorInput
impl Clone for DeleteReplicatorInput
source§fn clone(&self) -> DeleteReplicatorInput
fn clone(&self) -> DeleteReplicatorInput
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 DeleteReplicatorInput
impl Debug for DeleteReplicatorInput
source§impl PartialEq for DeleteReplicatorInput
impl PartialEq for DeleteReplicatorInput
source§fn eq(&self, other: &DeleteReplicatorInput) -> bool
fn eq(&self, other: &DeleteReplicatorInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteReplicatorInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteReplicatorInput
impl Send for DeleteReplicatorInput
impl Sync for DeleteReplicatorInput
impl Unpin for DeleteReplicatorInput
impl UnwindSafe for DeleteReplicatorInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.