Struct aws_sdk_rds::model::OptionSetting
source · [−]#[non_exhaustive]pub struct OptionSetting { /* private fields */ }Expand description
Option settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values.
Implementations
sourceimpl OptionSetting
impl OptionSetting
sourcepub fn default_value(&self) -> Option<&str>
pub fn default_value(&self) -> Option<&str>
The default value of the option setting.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the option setting.
sourcepub fn apply_type(&self) -> Option<&str>
pub fn apply_type(&self) -> Option<&str>
The DB engine specific parameter type.
sourcepub fn allowed_values(&self) -> Option<&str>
pub fn allowed_values(&self) -> Option<&str>
The allowed values of the option setting.
sourcepub fn is_modifiable(&self) -> bool
pub fn is_modifiable(&self) -> bool
A Boolean value that, when true, indicates the option setting can be modified from the default.
sourcepub fn is_collection(&self) -> bool
pub fn is_collection(&self) -> bool
Indicates if the option setting is part of a collection.
sourceimpl OptionSetting
impl OptionSetting
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OptionSetting.
Trait Implementations
sourceimpl Clone for OptionSetting
impl Clone for OptionSetting
sourcefn clone(&self) -> OptionSetting
fn clone(&self) -> OptionSetting
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for OptionSetting
impl Debug for OptionSetting
sourceimpl PartialEq<OptionSetting> for OptionSetting
impl PartialEq<OptionSetting> for OptionSetting
sourcefn eq(&self, other: &OptionSetting) -> bool
fn eq(&self, other: &OptionSetting) -> bool
impl StructuralPartialEq for OptionSetting
Auto Trait Implementations
impl RefUnwindSafe for OptionSetting
impl Send for OptionSetting
impl Sync for OptionSetting
impl Unpin for OptionSetting
impl UnwindSafe for OptionSetting
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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