#[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>,
pub network_type: 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.
network_type: Option<String>
The type of IP address protocol used by a replication instance, such as IPv4 only or Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is not yet supported.
Implementations§
source§impl 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.
sourcepub fn network_type(&self) -> Option<&str>
pub fn network_type(&self) -> Option<&str>
The type of IP address protocol used by a replication instance, such as IPv4 only or Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is not yet supported.
source§impl ReplicationPendingModifiedValues
impl ReplicationPendingModifiedValues
sourcepub fn builder() -> ReplicationPendingModifiedValuesBuilder
pub fn builder() -> ReplicationPendingModifiedValuesBuilder
Creates a new builder-style object to manufacture ReplicationPendingModifiedValues
.
Trait Implementations§
source§impl Clone for ReplicationPendingModifiedValues
impl Clone for ReplicationPendingModifiedValues
source§fn clone(&self) -> ReplicationPendingModifiedValues
fn clone(&self) -> ReplicationPendingModifiedValues
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<ReplicationPendingModifiedValues> for ReplicationPendingModifiedValues
impl PartialEq<ReplicationPendingModifiedValues> for ReplicationPendingModifiedValues
source§fn eq(&self, other: &ReplicationPendingModifiedValues) -> bool
fn eq(&self, other: &ReplicationPendingModifiedValues) -> bool
self
and other
values to be equal, and is used
by ==
.