Struct aws_sdk_docdb::types::DbEngineVersion
source · #[non_exhaustive]pub struct DbEngineVersion {
pub engine: Option<String>,
pub engine_version: Option<String>,
pub db_parameter_group_family: Option<String>,
pub db_engine_description: Option<String>,
pub db_engine_version_description: Option<String>,
pub valid_upgrade_target: Option<Vec<UpgradeTarget>>,
pub exportable_log_types: Option<Vec<String>>,
pub supports_log_exports_to_cloudwatch_logs: bool,
}
Expand description
Detailed information about an engine version.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.engine: Option<String>
The name of the database engine.
engine_version: Option<String>
The version number of the database engine.
db_parameter_group_family: Option<String>
The name of the parameter group family for the database engine.
db_engine_description: Option<String>
The description of the database engine.
db_engine_version_description: Option<String>
The description of the database engine version.
valid_upgrade_target: Option<Vec<UpgradeTarget>>
A list of engine versions that this database engine version can be upgraded to.
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: bool
A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes
to CloudWatch Logs.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DbEngineVersion
impl Debug for DbEngineVersion
source§impl PartialEq for DbEngineVersion
impl PartialEq for DbEngineVersion
source§fn eq(&self, other: &DbEngineVersion) -> bool
fn eq(&self, other: &DbEngineVersion) -> bool
self
and other
values to be equal, and is used
by ==
.