Struct aws_sdk_databasemigration::operation::reload_replication_tables::ReloadReplicationTablesOutput
source · #[non_exhaustive]pub struct ReloadReplicationTablesOutput {
pub replication_config_arn: Option<String>,
/* private fields */
}
Expand description
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.replication_config_arn: Option<String>
The Amazon Resource Name of the replication config for which to reload tables.
Implementations§
source§impl ReloadReplicationTablesOutput
impl ReloadReplicationTablesOutput
sourcepub fn replication_config_arn(&self) -> Option<&str>
pub fn replication_config_arn(&self) -> Option<&str>
The Amazon Resource Name of the replication config for which to reload tables.
source§impl ReloadReplicationTablesOutput
impl ReloadReplicationTablesOutput
sourcepub fn builder() -> ReloadReplicationTablesOutputBuilder
pub fn builder() -> ReloadReplicationTablesOutputBuilder
Creates a new builder-style object to manufacture ReloadReplicationTablesOutput
.
Trait Implementations§
source§impl Clone for ReloadReplicationTablesOutput
impl Clone for ReloadReplicationTablesOutput
source§fn clone(&self) -> ReloadReplicationTablesOutput
fn clone(&self) -> ReloadReplicationTablesOutput
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 PartialEq<ReloadReplicationTablesOutput> for ReloadReplicationTablesOutput
impl PartialEq<ReloadReplicationTablesOutput> for ReloadReplicationTablesOutput
source§fn eq(&self, other: &ReloadReplicationTablesOutput) -> bool
fn eq(&self, other: &ReloadReplicationTablesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ReloadReplicationTablesOutput
impl RequestId for ReloadReplicationTablesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for ReloadReplicationTablesOutput
Auto Trait Implementations§
impl RefUnwindSafe for ReloadReplicationTablesOutput
impl Send for ReloadReplicationTablesOutput
impl Sync for ReloadReplicationTablesOutput
impl Unpin for ReloadReplicationTablesOutput
impl UnwindSafe for ReloadReplicationTablesOutput
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