Struct aws_sdk_rds::types::ValidStorageOptions
source · #[non_exhaustive]pub struct ValidStorageOptions { /* private fields */ }Expand description
Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action.
Implementations§
source§impl ValidStorageOptions
impl ValidStorageOptions
sourcepub fn storage_type(&self) -> Option<&str>
pub fn storage_type(&self) -> Option<&str>
The valid storage types for your DB instance. For example: gp2, gp3, io1.
sourcepub fn storage_size(&self) -> Option<&[Range]>
pub fn storage_size(&self) -> Option<&[Range]>
The valid range of storage in gibibytes (GiB). For example, 100 to 16,384.
sourcepub fn provisioned_iops(&self) -> Option<&[Range]>
pub fn provisioned_iops(&self) -> Option<&[Range]>
The valid range of provisioned IOPS. For example, 1000-256,000.
sourcepub fn iops_to_storage_ratio(&self) -> Option<&[DoubleRange]>
pub fn iops_to_storage_ratio(&self) -> Option<&[DoubleRange]>
The valid range of Provisioned IOPS to gibibytes of storage multiplier. For example, 3-10, which means that provisioned IOPS can be between 3 and 10 times storage.
sourcepub fn supports_storage_autoscaling(&self) -> bool
pub fn supports_storage_autoscaling(&self) -> bool
Whether or not Amazon RDS can automatically scale storage for DB instances that use the new instance class.
sourcepub fn provisioned_storage_throughput(&self) -> Option<&[Range]>
pub fn provisioned_storage_throughput(&self) -> Option<&[Range]>
The valid range of provisioned storage throughput. For example, 500-4,000 mebibytes per second (MiBps).
sourcepub fn storage_throughput_to_iops_ratio(&self) -> Option<&[DoubleRange]>
pub fn storage_throughput_to_iops_ratio(&self) -> Option<&[DoubleRange]>
The valid range of storage throughput to provisioned IOPS ratios. For example, 0-0.25.
source§impl ValidStorageOptions
impl ValidStorageOptions
sourcepub fn builder() -> ValidStorageOptionsBuilder
pub fn builder() -> ValidStorageOptionsBuilder
Creates a new builder-style object to manufacture ValidStorageOptions.
Trait Implementations§
source§impl Clone for ValidStorageOptions
impl Clone for ValidStorageOptions
source§fn clone(&self) -> ValidStorageOptions
fn clone(&self) -> ValidStorageOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ValidStorageOptions
impl Debug for ValidStorageOptions
source§impl PartialEq<ValidStorageOptions> for ValidStorageOptions
impl PartialEq<ValidStorageOptions> for ValidStorageOptions
source§fn eq(&self, other: &ValidStorageOptions) -> bool
fn eq(&self, other: &ValidStorageOptions) -> bool
self and other values to be equal, and is used
by ==.