[][src]Struct rusoto_rds::OptionGroupOptionSetting

pub struct OptionGroupOptionSetting {
    pub allowed_values: Option<String>,
    pub apply_type: Option<String>,
    pub default_value: Option<String>,
    pub is_modifiable: Option<bool>,
    pub is_required: Option<bool>,
    pub minimum_engine_version_per_allowed_value: Option<Vec<MinimumEngineVersionPerAllowedValue>>,
    pub setting_description: Option<String>,
    pub setting_name: Option<String>,
}

Option group option settings are used to display settings available for each option with their default values and other information. These values are used with the DescribeOptionGroupOptions action.

Fields

allowed_values: Option<String>

Indicates the acceptable values for the option group option.

apply_type: Option<String>

The DB engine specific parameter type for the option group option.

default_value: Option<String>

The default value for the option group option.

is_modifiable: Option<bool>

Boolean value where true indicates that this option group option can be changed from the default value.

is_required: Option<bool>

Boolean value where true indicates that a value must be specified for this option setting of the option group option.

minimum_engine_version_per_allowed_value: Option<Vec<MinimumEngineVersionPerAllowedValue>>

The minimum DB engine version required for the corresponding allowed value for this option setting.

setting_description: Option<String>

The description of the option group option.

setting_name: Option<String>

The name of the option group option.

Trait Implementations

impl Clone for OptionGroupOptionSetting[src]

impl Debug for OptionGroupOptionSetting[src]

impl Default for OptionGroupOptionSetting[src]

impl PartialEq<OptionGroupOptionSetting> for OptionGroupOptionSetting[src]

impl StructuralPartialEq for OptionGroupOptionSetting[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.