#[non_exhaustive]pub struct OrderableReplicationInstance { /* private fields */ }
Expand description
In response to the DescribeOrderableReplicationInstances
operation, this object describes an available replication instance. This description includes the replication instance's type, engine version, and allocated storage.
Implementations§
source§impl OrderableReplicationInstance
impl OrderableReplicationInstance
sourcepub fn engine_version(&self) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
The version of the replication engine.
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 example to specify the instance class dms.c4.large, set this parameter to "dms.c4.large"
.
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 storage_type(&self) -> Option<&str>
pub fn storage_type(&self) -> Option<&str>
The type of storage used by the replication instance.
sourcepub fn min_allocated_storage(&self) -> i32
pub fn min_allocated_storage(&self) -> i32
The minimum amount of storage (in gigabytes) that can be allocated for the replication instance.
sourcepub fn max_allocated_storage(&self) -> i32
pub fn max_allocated_storage(&self) -> i32
The minimum amount of storage (in gigabytes) that can be allocated for the replication instance.
sourcepub fn default_allocated_storage(&self) -> i32
pub fn default_allocated_storage(&self) -> i32
The default amount of storage (in gigabytes) that is allocated for the replication instance.
sourcepub fn included_allocated_storage(&self) -> i32
pub fn included_allocated_storage(&self) -> i32
The amount of storage (in gigabytes) that is allocated for the replication instance.
sourcepub fn availability_zones(&self) -> Option<&[String]>
pub fn availability_zones(&self) -> Option<&[String]>
List of Availability Zones for this replication instance.
sourcepub fn release_status(&self) -> Option<&ReleaseStatusValues>
pub fn release_status(&self) -> Option<&ReleaseStatusValues>
The value returned when the specified EngineVersion
of the replication instance is in Beta or test mode. This indicates some features might not work as expected.
DMS supports the ReleaseStatus
parameter in versions 3.1.4 and later.
source§impl OrderableReplicationInstance
impl OrderableReplicationInstance
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OrderableReplicationInstance
.
Trait Implementations§
source§impl Clone for OrderableReplicationInstance
impl Clone for OrderableReplicationInstance
source§fn clone(&self) -> OrderableReplicationInstance
fn clone(&self) -> OrderableReplicationInstance
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OrderableReplicationInstance
impl Debug for OrderableReplicationInstance
source§impl PartialEq<OrderableReplicationInstance> for OrderableReplicationInstance
impl PartialEq<OrderableReplicationInstance> for OrderableReplicationInstance
source§fn eq(&self, other: &OrderableReplicationInstance) -> bool
fn eq(&self, other: &OrderableReplicationInstance) -> bool
self
and other
values to be equal, and is used
by ==
.