[][src]Struct rusoto_neptune::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 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>

Specifies the CloudWatch logs to be exported.

port: Option<i64>

Specifies the pending port for the DB instance.

storage_type: Option<String>

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

Trait Implementations

impl PartialEq<PendingModifiedValues> for PendingModifiedValues[src]

impl Default for PendingModifiedValues[src]

impl Clone for PendingModifiedValues[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PendingModifiedValues[src]

Auto Trait Implementations

impl Send for PendingModifiedValues

impl Sync for PendingModifiedValues

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self