pub struct OrderableReplicationInstance {
pub availability_zones: Option<Vec<String>>,
pub default_allocated_storage: Option<i64>,
pub engine_version: Option<String>,
pub included_allocated_storage: Option<i64>,
pub max_allocated_storage: Option<i64>,
pub min_allocated_storage: Option<i64>,
pub release_status: Option<String>,
pub replication_instance_class: Option<String>,
pub storage_type: Option<String>,
}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.
Fields§
§availability_zones: Option<Vec<String>>List of Availability Zones for this replication instance.
default_allocated_storage: Option<i64>The default amount of storage (in gigabytes) that is allocated for the replication instance.
engine_version: Option<String>The version of the replication engine.
included_allocated_storage: Option<i64>The amount of storage (in gigabytes) that is allocated for the replication instance.
max_allocated_storage: Option<i64>The minimum amount of storage (in gigabytes) that can be allocated for the replication instance.
min_allocated_storage: Option<i64>The minimum amount of storage (in gigabytes) that can be allocated for the replication instance.
release_status: Option<String>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.
AWS DMS supports the ReleaseStatus parameter in versions 3.1.4 and later.
replication_instance_class: Option<String>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 AWS DMS replication instance for your migration.
storage_type: Option<String>The type of storage used by the replication instance.
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 Default for OrderableReplicationInstance
impl Default for OrderableReplicationInstance
Source§fn default() -> OrderableReplicationInstance
fn default() -> OrderableReplicationInstance
Source§impl<'de> Deserialize<'de> for OrderableReplicationInstance
impl<'de> Deserialize<'de> for OrderableReplicationInstance
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for OrderableReplicationInstance
impl PartialEq 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 ==.