[][src]Struct rusoto_docdb::DBEngineVersion

pub struct DBEngineVersion {
    pub db_engine_description: Option<String>,
    pub db_engine_version_description: Option<String>,
    pub db_parameter_group_family: Option<String>,
    pub engine: Option<String>,
    pub engine_version: Option<String>,
    pub exportable_log_types: Option<Vec<String>>,
    pub supports_log_exports_to_cloudwatch_logs: Option<bool>,
    pub valid_upgrade_target: Option<Vec<UpgradeTarget>>,
}

Detailed information about an engine version.

Fields

db_engine_description: Option<String>

The description of the database engine.

db_engine_version_description: Option<String>

The description of the database engine version.

db_parameter_group_family: Option<String>

The name of the parameter group family for the database engine.

engine: Option<String>

The name of the database engine.

engine_version: Option<String>

The version number of the database engine.

exportable_log_types: Option<Vec<String>>

The types of logs that the database engine has available for export to Amazon CloudWatch Logs.

supports_log_exports_to_cloudwatch_logs: Option<bool>

A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.

valid_upgrade_target: Option<Vec<UpgradeTarget>>

A list of engine versions that this database engine version can be upgraded to.

Trait Implementations

impl Clone for DBEngineVersion[src]

impl Debug for DBEngineVersion[src]

impl Default for DBEngineVersion[src]

impl PartialEq<DBEngineVersion> for DBEngineVersion[src]

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