Struct aws_sdk_rds::types::builders::OptionConfigurationBuilder
source · #[non_exhaustive]pub struct OptionConfigurationBuilder { /* private fields */ }Expand description
A builder for OptionConfiguration.
Implementations§
source§impl OptionConfigurationBuilder
impl OptionConfigurationBuilder
sourcepub fn option_name(self, input: impl Into<String>) -> Self
pub fn option_name(self, input: impl Into<String>) -> Self
The configuration of options to include in a group.
This field is required.sourcepub fn set_option_name(self, input: Option<String>) -> Self
pub fn set_option_name(self, input: Option<String>) -> Self
The configuration of options to include in a group.
sourcepub fn get_option_name(&self) -> &Option<String>
pub fn get_option_name(&self) -> &Option<String>
The configuration of options to include in a group.
sourcepub fn option_version(self, input: impl Into<String>) -> Self
pub fn option_version(self, input: impl Into<String>) -> Self
The version for the option.
sourcepub fn set_option_version(self, input: Option<String>) -> Self
pub fn set_option_version(self, input: Option<String>) -> Self
The version for the option.
sourcepub fn get_option_version(&self) -> &Option<String>
pub fn get_option_version(&self) -> &Option<String>
The version for the option.
sourcepub fn db_security_group_memberships(self, input: impl Into<String>) -> Self
pub fn db_security_group_memberships(self, input: impl Into<String>) -> Self
Appends an item to db_security_group_memberships.
To override the contents of this collection use set_db_security_group_memberships.
A list of DBSecurityGroupMembership name strings used for this option.
sourcepub fn set_db_security_group_memberships(
self,
input: Option<Vec<String>>,
) -> Self
pub fn set_db_security_group_memberships( self, input: Option<Vec<String>>, ) -> Self
A list of DBSecurityGroupMembership name strings used for this option.
sourcepub fn get_db_security_group_memberships(&self) -> &Option<Vec<String>>
pub fn get_db_security_group_memberships(&self) -> &Option<Vec<String>>
A list of DBSecurityGroupMembership name strings used for this option.
sourcepub fn vpc_security_group_memberships(self, input: impl Into<String>) -> Self
pub fn vpc_security_group_memberships(self, input: impl Into<String>) -> Self
Appends an item to vpc_security_group_memberships.
To override the contents of this collection use set_vpc_security_group_memberships.
A list of VpcSecurityGroupMembership name strings used for this option.
sourcepub fn set_vpc_security_group_memberships(
self,
input: Option<Vec<String>>,
) -> Self
pub fn set_vpc_security_group_memberships( self, input: Option<Vec<String>>, ) -> Self
A list of VpcSecurityGroupMembership name strings used for this option.
sourcepub fn get_vpc_security_group_memberships(&self) -> &Option<Vec<String>>
pub fn get_vpc_security_group_memberships(&self) -> &Option<Vec<String>>
A list of VpcSecurityGroupMembership name strings used for this option.
sourcepub fn option_settings(self, input: OptionSetting) -> Self
pub fn option_settings(self, input: OptionSetting) -> Self
Appends an item to option_settings.
To override the contents of this collection use set_option_settings.
The option settings to include in an option group.
sourcepub fn set_option_settings(self, input: Option<Vec<OptionSetting>>) -> Self
pub fn set_option_settings(self, input: Option<Vec<OptionSetting>>) -> Self
The option settings to include in an option group.
sourcepub fn get_option_settings(&self) -> &Option<Vec<OptionSetting>>
pub fn get_option_settings(&self) -> &Option<Vec<OptionSetting>>
The option settings to include in an option group.
sourcepub fn build(self) -> OptionConfiguration
pub fn build(self) -> OptionConfiguration
Consumes the builder and constructs a OptionConfiguration.
Trait Implementations§
source§impl Clone for OptionConfigurationBuilder
impl Clone for OptionConfigurationBuilder
source§fn clone(&self) -> OptionConfigurationBuilder
fn clone(&self) -> OptionConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for OptionConfigurationBuilder
impl Debug for OptionConfigurationBuilder
source§impl Default for OptionConfigurationBuilder
impl Default for OptionConfigurationBuilder
source§fn default() -> OptionConfigurationBuilder
fn default() -> OptionConfigurationBuilder
source§impl PartialEq for OptionConfigurationBuilder
impl PartialEq for OptionConfigurationBuilder
source§fn eq(&self, other: &OptionConfigurationBuilder) -> bool
fn eq(&self, other: &OptionConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for OptionConfigurationBuilder
Auto Trait Implementations§
impl Freeze for OptionConfigurationBuilder
impl RefUnwindSafe for OptionConfigurationBuilder
impl Send for OptionConfigurationBuilder
impl Sync for OptionConfigurationBuilder
impl Unpin for OptionConfigurationBuilder
impl UnwindSafe for OptionConfigurationBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more