Struct aws_sdk_docdb::model::db_engine_version::Builder
source · [−]#[non_exhaustive]pub struct Builder { /* private fields */ }Expand description
A builder for DbEngineVersion
Implementations
sourceimpl Builder
impl Builder
sourcepub fn set_engine(self, input: Option<String>) -> Self
pub fn set_engine(self, input: Option<String>) -> Self
The name of the database engine.
sourcepub fn engine_version(self, input: impl Into<String>) -> Self
pub fn engine_version(self, input: impl Into<String>) -> Self
The version number of the database engine.
sourcepub fn set_engine_version(self, input: Option<String>) -> Self
pub fn set_engine_version(self, input: Option<String>) -> Self
The version number of the database engine.
sourcepub fn db_parameter_group_family(self, input: impl Into<String>) -> Self
pub fn db_parameter_group_family(self, input: impl Into<String>) -> Self
The name of the parameter group family for the database engine.
sourcepub fn set_db_parameter_group_family(self, input: Option<String>) -> Self
pub fn set_db_parameter_group_family(self, input: Option<String>) -> Self
The name of the parameter group family for the database engine.
sourcepub fn db_engine_description(self, input: impl Into<String>) -> Self
pub fn db_engine_description(self, input: impl Into<String>) -> Self
The description of the database engine.
sourcepub fn set_db_engine_description(self, input: Option<String>) -> Self
pub fn set_db_engine_description(self, input: Option<String>) -> Self
The description of the database engine.
sourcepub fn db_engine_version_description(self, input: impl Into<String>) -> Self
pub fn db_engine_version_description(self, input: impl Into<String>) -> Self
The description of the database engine version.
sourcepub fn set_db_engine_version_description(self, input: Option<String>) -> Self
pub fn set_db_engine_version_description(self, input: Option<String>) -> Self
The description of the database engine version.
sourcepub fn valid_upgrade_target(self, input: UpgradeTarget) -> Self
pub fn valid_upgrade_target(self, input: UpgradeTarget) -> Self
Appends an item to valid_upgrade_target.
To override the contents of this collection use set_valid_upgrade_target.
A list of engine versions that this database engine version can be upgraded to.
sourcepub fn set_valid_upgrade_target(self, input: Option<Vec<UpgradeTarget>>) -> Self
pub fn set_valid_upgrade_target(self, input: Option<Vec<UpgradeTarget>>) -> Self
A list of engine versions that this database engine version can be upgraded to.
sourcepub fn exportable_log_types(self, input: impl Into<String>) -> Self
pub fn exportable_log_types(self, input: impl Into<String>) -> Self
Appends an item to exportable_log_types.
To override the contents of this collection use set_exportable_log_types.
The types of logs that the database engine has available for export to Amazon CloudWatch Logs.
sourcepub fn set_exportable_log_types(self, input: Option<Vec<String>>) -> Self
pub fn set_exportable_log_types(self, input: Option<Vec<String>>) -> Self
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, input: bool) -> Self
pub fn supports_log_exports_to_cloudwatch_logs(self, input: bool) -> Self
A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.
sourcepub fn set_supports_log_exports_to_cloudwatch_logs(
self,
input: Option<bool>
) -> Self
pub fn set_supports_log_exports_to_cloudwatch_logs(
self,
input: Option<bool>
) -> Self
A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.
sourcepub fn build(self) -> DbEngineVersion
pub fn build(self) -> DbEngineVersion
Consumes the builder and constructs a DbEngineVersion
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more