[][src]Struct rusoto_rds::InstallationMedia

pub struct InstallationMedia {
    pub custom_availability_zone_id: Option<String>,
    pub engine: Option<String>,
    pub engine_installation_media_path: Option<String>,
    pub engine_version: Option<String>,
    pub failure_cause: Option<InstallationMediaFailureCause>,
    pub installation_media_id: Option<String>,
    pub os_installation_media_path: Option<String>,
    pub status: Option<String>,
}

Contains the installation media for a DB engine that requires an on-premises customer provided license, such as Microsoft SQL Server.

Fields

custom_availability_zone_id: Option<String>

The custom Availability Zone (AZ) that contains the installation media.

engine: Option<String>

The DB engine.

engine_installation_media_path: Option<String>

The path to the installation medium for the DB engine.

engine_version: Option<String>

The engine version of the DB engine.

failure_cause: Option<InstallationMediaFailureCause>

If an installation media failure occurred, the cause of the failure.

installation_media_id: Option<String>

The installation medium ID.

os_installation_media_path: Option<String>

The path to the installation medium for the operating system associated with the DB engine.

status: Option<String>

The status of the installation medium.

Trait Implementations

impl Clone for InstallationMedia[src]

impl Debug for InstallationMedia[src]

impl Default for InstallationMedia[src]

impl PartialEq<InstallationMedia> for InstallationMedia[src]

impl StructuralPartialEq for InstallationMedia[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.