Struct rusoto_rds::ValidStorageOptions [] [src]

pub struct ValidStorageOptions {
    pub iops_to_storage_ratio: Option<Vec<DoubleRange>>,
    pub provisioned_iops: Option<Vec<Range>>,
    pub storage_size: Option<Vec<Range>>,
    pub storage_type: Option<String>,
}

Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action.

Fields

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.

The valid range of provisioned IOPS. For example, 1000-20000.

The valid range of storage in gibibytes. For example, 100 to 16384.

The valid storage types for your DB instance. For example, gp2, io1.

Trait Implementations

impl Default for ValidStorageOptions
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for ValidStorageOptions
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ValidStorageOptions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations