Struct aws_sdk_rds::types::AvailableProcessorFeature
source · #[non_exhaustive]pub struct AvailableProcessorFeature {
pub name: Option<String>,
pub default_value: Option<String>,
pub allowed_values: Option<String>,
}Expand description
Contains the available processor feature information for the DB instance class of a DB instance.
For more information, see Configuring the Processor of the DB Instance Class in the Amazon RDS User Guide.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the processor feature. Valid names are coreCount and threadsPerCore.
default_value: Option<String>The default value for the processor feature of the DB instance class.
allowed_values: Option<String>The allowed values for the processor feature of the DB instance class.
Implementations§
source§impl AvailableProcessorFeature
impl AvailableProcessorFeature
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the processor feature. Valid names are coreCount and threadsPerCore.
sourcepub fn default_value(&self) -> Option<&str>
pub fn default_value(&self) -> Option<&str>
The default value for the processor feature of the DB instance class.
sourcepub fn allowed_values(&self) -> Option<&str>
pub fn allowed_values(&self) -> Option<&str>
The allowed values for the processor feature of the DB instance class.
source§impl AvailableProcessorFeature
impl AvailableProcessorFeature
sourcepub fn builder() -> AvailableProcessorFeatureBuilder
pub fn builder() -> AvailableProcessorFeatureBuilder
Creates a new builder-style object to manufacture AvailableProcessorFeature.
Trait Implementations§
source§impl Clone for AvailableProcessorFeature
impl Clone for AvailableProcessorFeature
source§fn clone(&self) -> AvailableProcessorFeature
fn clone(&self) -> AvailableProcessorFeature
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 AvailableProcessorFeature
impl Debug for AvailableProcessorFeature
impl StructuralPartialEq for AvailableProcessorFeature
Auto Trait Implementations§
impl Freeze for AvailableProcessorFeature
impl RefUnwindSafe for AvailableProcessorFeature
impl Send for AvailableProcessorFeature
impl Sync for AvailableProcessorFeature
impl Unpin for AvailableProcessorFeature
impl UnwindSafe for AvailableProcessorFeature
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.