Struct aws_sdk_databasemigration::types::RdsConfiguration
source · #[non_exhaustive]pub struct RdsConfiguration { /* private fields */ }
Expand description
Provides information that describes the configuration of the recommended target engine on Amazon RDS.
Implementations§
source§impl RdsConfiguration
impl RdsConfiguration
sourcepub fn engine_edition(&self) -> Option<&str>
pub fn engine_edition(&self) -> Option<&str>
Describes the recommended target Amazon RDS engine edition.
sourcepub fn instance_type(&self) -> Option<&str>
pub fn instance_type(&self) -> Option<&str>
Describes the recommended target Amazon RDS instance type.
sourcepub fn instance_vcpu(&self) -> Option<f64>
pub fn instance_vcpu(&self) -> Option<f64>
Describes the number of virtual CPUs (vCPU) on the recommended Amazon RDS DB instance that meets your requirements.
sourcepub fn instance_memory(&self) -> Option<f64>
pub fn instance_memory(&self) -> Option<f64>
Describes the memory on the recommended Amazon RDS DB instance that meets your requirements.
sourcepub fn storage_type(&self) -> Option<&str>
pub fn storage_type(&self) -> Option<&str>
Describes the storage type of the recommended Amazon RDS DB instance that meets your requirements.
Amazon RDS provides three storage types: General Purpose SSD (also known as gp2 and gp3), Provisioned IOPS SSD (also known as io1), and magnetic (also known as standard).
sourcepub fn storage_size(&self) -> Option<i32>
pub fn storage_size(&self) -> Option<i32>
Describes the storage size of the recommended Amazon RDS DB instance that meets your requirements.
sourcepub fn storage_iops(&self) -> Option<i32>
pub fn storage_iops(&self) -> Option<i32>
Describes the number of I/O operations completed each second (IOPS) on the recommended Amazon RDS DB instance that meets your requirements.
sourcepub fn deployment_option(&self) -> Option<&str>
pub fn deployment_option(&self) -> Option<&str>
Describes the deployment option for the recommended Amazon RDS DB instance. The deployment options include Multi-AZ and Single-AZ deployments. Valid values include "MULTI_AZ"
and "SINGLE_AZ"
.
source§impl RdsConfiguration
impl RdsConfiguration
sourcepub fn builder() -> RdsConfigurationBuilder
pub fn builder() -> RdsConfigurationBuilder
Creates a new builder-style object to manufacture RdsConfiguration
.
Trait Implementations§
source§impl Clone for RdsConfiguration
impl Clone for RdsConfiguration
source§fn clone(&self) -> RdsConfiguration
fn clone(&self) -> RdsConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RdsConfiguration
impl Debug for RdsConfiguration
source§impl PartialEq<RdsConfiguration> for RdsConfiguration
impl PartialEq<RdsConfiguration> for RdsConfiguration
source§fn eq(&self, other: &RdsConfiguration) -> bool
fn eq(&self, other: &RdsConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.