[][src]Struct rusoto_rds::UpgradeTarget

pub struct UpgradeTarget {
    pub auto_upgrade: Option<bool>,
    pub description: Option<String>,
    pub engine: Option<String>,
    pub engine_version: Option<String>,
    pub is_major_version_upgrade: Option<bool>,
}

The version of the database engine that a DB instance can be upgraded to.

Fields

auto_upgrade: Option<bool>

A value that indicates whether the target version is applied to any source DB instances that have AutoMinorVersionUpgrade set to true.

description: Option<String>

The version of the database engine that a DB instance can be upgraded to.

engine: Option<String>

The name of the upgrade target database engine.

engine_version: Option<String>

The version number of the upgrade target database engine.

is_major_version_upgrade: Option<bool>

A value that indicates whether a database engine is upgraded to a major version.

Trait Implementations

impl Clone for UpgradeTarget[src]

impl Default for UpgradeTarget[src]

impl PartialEq<UpgradeTarget> for UpgradeTarget[src]

impl Debug for UpgradeTarget[src]

impl StructuralPartialEq for UpgradeTarget[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