#[non_exhaustive]pub struct ReplicationPendingModifiedValues {
pub replication_instance_class: Option<String>,
pub allocated_storage: Option<i32>,
pub multi_az: Option<bool>,
pub engine_version: Option<String>,
}
Expand description
Provides information about the values of pending modifications to a replication instance. This data type is an object of the ReplicationInstance
user-defined data type.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.replication_instance_class: Option<String>
The compute and memory capacity of the replication instance as defined for the specified replication instance class.
For more information on the settings and capacities for the available replication instance classes, see Selecting the right DMS replication instance for your migration.
allocated_storage: Option<i32>
The amount of storage (in gigabytes) that is allocated for the replication instance.
multi_az: Option<bool>
Specifies whether the replication instance is a Multi-AZ deployment. You can't set the AvailabilityZone
parameter if the Multi-AZ parameter is set to true
.
engine_version: Option<String>
The engine version number of the replication instance.
Implementations
sourceimpl ReplicationPendingModifiedValues
impl ReplicationPendingModifiedValues
sourcepub fn replication_instance_class(&self) -> Option<&str>
pub fn replication_instance_class(&self) -> Option<&str>
The compute and memory capacity of the replication instance as defined for the specified replication instance class.
For more information on the settings and capacities for the available replication instance classes, see Selecting the right DMS replication instance for your migration.
sourcepub fn allocated_storage(&self) -> Option<i32>
pub fn allocated_storage(&self) -> Option<i32>
The amount of storage (in gigabytes) that is allocated for the replication instance.
sourcepub fn multi_az(&self) -> Option<bool>
pub fn multi_az(&self) -> Option<bool>
Specifies whether the replication instance is a Multi-AZ deployment. You can't set the AvailabilityZone
parameter if the Multi-AZ parameter is set to true
.
sourcepub fn engine_version(&self) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
The engine version number of the replication instance.
sourceimpl ReplicationPendingModifiedValues
impl ReplicationPendingModifiedValues
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ReplicationPendingModifiedValues
Trait Implementations
sourceimpl Clone for ReplicationPendingModifiedValues
impl Clone for ReplicationPendingModifiedValues
sourcefn clone(&self) -> ReplicationPendingModifiedValues
fn clone(&self) -> ReplicationPendingModifiedValues
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<ReplicationPendingModifiedValues> for ReplicationPendingModifiedValues
impl PartialEq<ReplicationPendingModifiedValues> for ReplicationPendingModifiedValues
sourcefn eq(&self, other: &ReplicationPendingModifiedValues) -> bool
fn eq(&self, other: &ReplicationPendingModifiedValues) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ReplicationPendingModifiedValues) -> bool
fn ne(&self, other: &ReplicationPendingModifiedValues) -> bool
This method tests for !=
.
impl StructuralPartialEq for ReplicationPendingModifiedValues
Auto Trait Implementations
impl RefUnwindSafe for ReplicationPendingModifiedValues
impl Send for ReplicationPendingModifiedValues
impl Sync for ReplicationPendingModifiedValues
impl Unpin for ReplicationPendingModifiedValues
impl UnwindSafe for ReplicationPendingModifiedValues
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more