[][src]Struct rusoto_rds::OptionConfiguration

pub struct OptionConfiguration {
    pub db_security_group_memberships: Option<Vec<String>>,
    pub option_name: String,
    pub option_settings: Option<Vec<OptionSetting>>,
    pub option_version: Option<String>,
    pub port: Option<i64>,
    pub vpc_security_group_memberships: Option<Vec<String>>,
}

A list of all available options

Fields

db_security_group_memberships: Option<Vec<String>>

A list of DBSecurityGroupMembership name strings used for this option.

option_name: String

The configuration of options to include in a group.

option_settings: Option<Vec<OptionSetting>>

The option settings to include in an option group.

option_version: Option<String>

The version for the option.

port: Option<i64>

The optional port for the option.

vpc_security_group_memberships: Option<Vec<String>>

A list of VpcSecurityGroupMembership name strings used for this option.

Trait Implementations

impl Clone for OptionConfiguration[src]

impl Default for OptionConfiguration[src]

impl PartialEq<OptionConfiguration> for OptionConfiguration[src]

impl Debug for OptionConfiguration[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self