[][src]Struct rusoto_rds::OptionGroupOption

pub struct OptionGroupOption {
    pub default_port: Option<i64>,
    pub description: Option<String>,
    pub engine_name: Option<String>,
    pub major_engine_version: Option<String>,
    pub minimum_required_minor_engine_version: Option<String>,
    pub name: Option<String>,
    pub option_group_option_settings: Option<Vec<OptionGroupOptionSetting>>,
    pub option_group_option_versions: Option<Vec<OptionVersion>>,
    pub options_conflicts_with: Option<Vec<String>>,
    pub options_depended_on: Option<Vec<String>>,
    pub permanent: Option<bool>,
    pub persistent: Option<bool>,
    pub port_required: Option<bool>,
    pub requires_auto_minor_engine_version_upgrade: Option<bool>,
    pub supports_option_version_downgrade: Option<bool>,
    pub vpc_only: Option<bool>,
}

Available option.

Fields

default_port: Option<i64>

If the option requires a port, specifies the default port for the option.

description: Option<String>

The description of the option.

engine_name: Option<String>

The name of the engine that this option can be applied to.

major_engine_version: Option<String>

Indicates the major engine version that the option is available for.

minimum_required_minor_engine_version: Option<String>

The minimum required engine version for the option to be applied.

name: Option<String>

The name of the option.

option_group_option_settings: Option<Vec<OptionGroupOptionSetting>>

The option settings that are available (and the default value) for each option in an option group.

option_group_option_versions: Option<Vec<OptionVersion>>

The versions that are available for the option.

options_conflicts_with: Option<Vec<String>>

The options that conflict with this option.

options_depended_on: Option<Vec<String>>

The options that are prerequisites for this option.

permanent: Option<bool>

Permanent options can never be removed from an option group. An option group containing a permanent option can't be removed from a DB instance.

persistent: Option<bool>

Persistent options can't be removed from an option group while DB instances are associated with the option group. If you disassociate all DB instances from the option group, your can remove the persistent option from the option group.

port_required: Option<bool>

Specifies whether the option requires a port.

requires_auto_minor_engine_version_upgrade: Option<bool>

If true, you must enable the Auto Minor Version Upgrade setting for your DB instance before you can use this option. You can enable Auto Minor Version Upgrade when you first create your DB instance, or by modifying your DB instance later.

supports_option_version_downgrade: Option<bool>

If true, you can change the option to an earlier version of the option. This only applies to options that have different versions available.

vpc_only: Option<bool>

If true, you can only use this option with a DB instance that is in a VPC.

Trait Implementations

impl PartialEq<OptionGroupOption> for OptionGroupOption[src]

impl Default for OptionGroupOption[src]

impl Clone for OptionGroupOption[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for OptionGroupOption[src]

Auto Trait Implementations

impl Send for OptionGroupOption

impl Sync for OptionGroupOption

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self