[][src]Struct rusoto_rds::OptionGroup

pub struct OptionGroup {
    pub allows_vpc_and_non_vpc_instance_memberships: Option<bool>,
    pub engine_name: Option<String>,
    pub major_engine_version: Option<String>,
    pub option_group_arn: Option<String>,
    pub option_group_description: Option<String>,
    pub option_group_name: Option<String>,
    pub options: Option<Vec<RDSOption>>,
    pub vpc_id: Option<String>,
}

Fields

allows_vpc_and_non_vpc_instance_memberships: Option<bool>

Indicates whether this option group can be applied to both VPC and non-VPC instances. The value true indicates the option group can be applied to both VPC and non-VPC instances.

engine_name: Option<String>

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

major_engine_version: Option<String>

Indicates the major engine version associated with this option group.

option_group_arn: Option<String>

The Amazon Resource Name (ARN) for the option group.

option_group_description: Option<String>

Provides a description of the option group.

option_group_name: Option<String>

Specifies the name of the option group.

options: Option<Vec<RDSOption>>

Indicates what options are available in the option group.

vpc_id: Option<String>

If AllowsVpcAndNonVpcInstanceMemberships is false, this field is blank. If AllowsVpcAndNonVpcInstanceMemberships is true and this field is blank, then this option group can be applied to both VPC and non-VPC instances. If this field contains a value, then this option group can only be applied to instances that are in the VPC indicated by this field.

Trait Implementations

impl PartialEq<OptionGroup> for OptionGroup[src]

impl Default for OptionGroup[src]

impl Clone for OptionGroup[src]

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

Performs copy-assignment from source. Read more

impl Debug for OptionGroup[src]

Auto Trait Implementations

impl Send for OptionGroup

impl Sync for OptionGroup

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