[][src]Struct rusoto_rds::PendingModifiedValues

pub struct PendingModifiedValues {
    pub allocated_storage: Option<i64>,
    pub backup_retention_period: Option<i64>,
    pub ca_certificate_identifier: Option<String>,
    pub db_instance_class: Option<String>,
    pub db_instance_identifier: Option<String>,
    pub db_subnet_group_name: Option<String>,
    pub engine_version: Option<String>,
    pub iops: Option<i64>,
    pub license_model: Option<String>,
    pub master_user_password: Option<String>,
    pub multi_az: Option<bool>,
    pub pending_cloudwatch_logs_exports: Option<PendingCloudwatchLogsExports>,
    pub port: Option<i64>,
    pub processor_features: Option<Vec<ProcessorFeature>>,
    pub storage_type: Option<String>,
}

This data type is used as a response element in the ModifyDBInstance action.

Fields

allocated_storage: Option<i64>

Contains the new AllocatedStorage size for the DB instance that will be applied or is currently being applied.

backup_retention_period: Option<i64>

Specifies the pending number of days for which automated backups are retained.

ca_certificate_identifier: Option<String>

Specifies the identifier of the CA certificate for the DB instance.

db_instance_class: Option<String>

Contains the new DBInstanceClass for the DB instance that will be applied or is currently being applied.

db_instance_identifier: Option<String>

Contains the new DBInstanceIdentifier for the DB instance that will be applied or is currently being applied.

db_subnet_group_name: Option<String>

The new DB subnet group for the DB instance.

engine_version: Option<String>

Indicates the database engine version.

iops: Option<i64>

Specifies the new Provisioned IOPS value for the DB instance that will be applied or is currently being applied.

license_model: Option<String>

The license model for the DB instance.

Valid values: license-included | bring-your-own-license | general-public-license

master_user_password: Option<String>

Contains the pending or currently-in-progress change of the master credentials for the DB instance.

multi_az: Option<bool>

Indicates that the Single-AZ DB instance is to change to a Multi-AZ deployment.

pending_cloudwatch_logs_exports: Option<PendingCloudwatchLogsExports>port: Option<i64>

Specifies the pending port for the DB instance.

processor_features: Option<Vec<ProcessorFeature>>

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

storage_type: Option<String>

Specifies the storage type to be associated with the DB instance.

Trait Implementations

impl Clone for PendingModifiedValues[src]

impl Default for PendingModifiedValues[src]

impl PartialEq<PendingModifiedValues> for PendingModifiedValues[src]

impl Debug for PendingModifiedValues[src]

impl StructuralPartialEq for PendingModifiedValues[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self