Struct aws_sdk_docdb::types::DbEngineVersion
source · #[non_exhaustive]pub struct DbEngineVersion { /* private fields */ }Expand description
Detailed information about an engine version.
Implementations§
source§impl DbEngineVersion
impl DbEngineVersion
sourcepub fn engine_version(&self) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
The version number of the database engine.
sourcepub fn db_parameter_group_family(&self) -> Option<&str>
pub fn db_parameter_group_family(&self) -> Option<&str>
The name of the parameter group family for the database engine.
sourcepub fn db_engine_description(&self) -> Option<&str>
pub fn db_engine_description(&self) -> Option<&str>
The description of the database engine.
sourcepub fn db_engine_version_description(&self) -> Option<&str>
pub fn db_engine_version_description(&self) -> Option<&str>
The description of the database engine version.
sourcepub fn valid_upgrade_target(&self) -> Option<&[UpgradeTarget]>
pub fn valid_upgrade_target(&self) -> Option<&[UpgradeTarget]>
A list of engine versions that this database engine version can be upgraded to.
sourcepub fn exportable_log_types(&self) -> Option<&[String]>
pub fn exportable_log_types(&self) -> Option<&[String]>
The types of logs that the database engine has available for export to Amazon CloudWatch Logs.
sourcepub fn supports_log_exports_to_cloudwatch_logs(&self) -> bool
pub fn supports_log_exports_to_cloudwatch_logs(&self) -> bool
A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.
source§impl DbEngineVersion
impl DbEngineVersion
sourcepub fn builder() -> DbEngineVersionBuilder
pub fn builder() -> DbEngineVersionBuilder
Creates a new builder-style object to manufacture DbEngineVersion.
Trait Implementations§
source§impl Clone for DbEngineVersion
impl Clone for DbEngineVersion
source§fn clone(&self) -> DbEngineVersion
fn clone(&self) -> DbEngineVersion
Returns a copy 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 PartialEq<DbEngineVersion> for DbEngineVersion
impl PartialEq<DbEngineVersion> for DbEngineVersion
source§fn eq(&self, other: &DbEngineVersion) -> bool
fn eq(&self, other: &DbEngineVersion) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DbEngineVersion
Auto Trait Implementations§
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