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>>,
}
Expand description
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§
Source§impl Clone for DBEngineVersion
impl Clone for DBEngineVersion
Source§fn clone(&self) -> DBEngineVersion
fn clone(&self) -> DBEngineVersion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DBEngineVersion
impl Debug for DBEngineVersion
Source§impl Default for DBEngineVersion
impl Default for DBEngineVersion
Source§fn default() -> DBEngineVersion
fn default() -> DBEngineVersion
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBEngineVersion
impl PartialEq for DBEngineVersion
impl StructuralPartialEq for DBEngineVersion
Auto Trait Implementations§
impl Freeze for DBEngineVersion
impl RefUnwindSafe for DBEngineVersion
impl Send for DBEngineVersion
impl Sync for DBEngineVersion
impl Unpin for DBEngineVersion
impl UnwindSafe for DBEngineVersion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more