#[non_exhaustive]pub struct ValidDbInstanceModificationsMessage {
pub storage: Option<Vec<ValidStorageOptions>>,
pub valid_processor_features: Option<Vec<AvailableProcessorFeature>>,
pub supports_dedicated_log_volume: Option<bool>,
}Expand description
Information about valid modifications that you can make to your DB instance. Contains the result of a successful call to the DescribeValidDBInstanceModifications action. You can use this information when you call ModifyDBInstance.
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.storage: Option<Vec<ValidStorageOptions>>Valid storage options for your DB instance.
valid_processor_features: Option<Vec<AvailableProcessorFeature>>Valid processor features for your DB instance.
supports_dedicated_log_volume: Option<bool>Indicates whether a DB instance supports using a dedicated log volume (DLV).
Implementations§
source§impl ValidDbInstanceModificationsMessage
impl ValidDbInstanceModificationsMessage
sourcepub fn storage(&self) -> &[ValidStorageOptions]
pub fn storage(&self) -> &[ValidStorageOptions]
Valid storage options for your DB instance.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .storage.is_none().
sourcepub fn valid_processor_features(&self) -> &[AvailableProcessorFeature]
pub fn valid_processor_features(&self) -> &[AvailableProcessorFeature]
Valid processor features for your DB instance.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .valid_processor_features.is_none().
sourcepub fn supports_dedicated_log_volume(&self) -> Option<bool>
pub fn supports_dedicated_log_volume(&self) -> Option<bool>
Indicates whether a DB instance supports using a dedicated log volume (DLV).
source§impl ValidDbInstanceModificationsMessage
impl ValidDbInstanceModificationsMessage
sourcepub fn builder() -> ValidDbInstanceModificationsMessageBuilder
pub fn builder() -> ValidDbInstanceModificationsMessageBuilder
Creates a new builder-style object to manufacture ValidDbInstanceModificationsMessage.
Trait Implementations§
source§impl Clone for ValidDbInstanceModificationsMessage
impl Clone for ValidDbInstanceModificationsMessage
source§fn clone(&self) -> ValidDbInstanceModificationsMessage
fn clone(&self) -> ValidDbInstanceModificationsMessage
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ValidDbInstanceModificationsMessage
impl PartialEq for ValidDbInstanceModificationsMessage
source§fn eq(&self, other: &ValidDbInstanceModificationsMessage) -> bool
fn eq(&self, other: &ValidDbInstanceModificationsMessage) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValidDbInstanceModificationsMessage
Auto Trait Implementations§
impl Freeze for ValidDbInstanceModificationsMessage
impl RefUnwindSafe for ValidDbInstanceModificationsMessage
impl Send for ValidDbInstanceModificationsMessage
impl Sync for ValidDbInstanceModificationsMessage
impl Unpin for ValidDbInstanceModificationsMessage
impl UnwindSafe for ValidDbInstanceModificationsMessage
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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