#[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 ==
.