Struct rusoto_rds::PendingModifiedValues[][src]

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 storage_type: Option<String>,
}

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

Fields

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

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

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

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

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

The new DB subnet group for the DB instance.

Indicates the database engine version.

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

The license model for the DB instance.

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

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

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

Specifies the pending port for the DB instance.

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

Trait Implementations

impl Default for PendingModifiedValues
[src]

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

impl Debug for PendingModifiedValues
[src]

Formats the value using the given formatter. Read more

impl Clone for PendingModifiedValues
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PendingModifiedValues
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations