[][src]Struct rusoto_rds::RDSOption

pub struct RDSOption {
    pub db_security_group_memberships: Option<Vec<DBSecurityGroupMembership>>,
    pub option_description: Option<String>,
    pub option_name: Option<String>,
    pub option_settings: Option<Vec<OptionSetting>>,
    pub option_version: Option<String>,
    pub permanent: Option<bool>,
    pub persistent: Option<bool>,
    pub port: Option<i64>,
    pub vpc_security_group_memberships: Option<Vec<VpcSecurityGroupMembership>>,
}

Option details.

Fields

db_security_group_memberships: Option<Vec<DBSecurityGroupMembership>>

If the option requires access to a port, then this DB security group allows access to the port.

option_description: Option<String>

The description of the option.

option_name: Option<String>

The name of the option.

option_settings: Option<Vec<OptionSetting>>

The option settings for this option.

option_version: Option<String>

The version of the option.

permanent: Option<bool>

Indicate if this option is permanent.

persistent: Option<bool>

Indicate if this option is persistent.

port: Option<i64>

If required, the port configured for this option to use.

vpc_security_group_memberships: Option<Vec<VpcSecurityGroupMembership>>

If the option requires access to a port, then this VPC security group allows access to the port.

Trait Implementations

impl Clone for RDSOption[src]

impl Debug for RDSOption[src]

impl Default for RDSOption[src]

impl PartialEq<RDSOption> for RDSOption[src]

impl StructuralPartialEq for RDSOption[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> 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.