[][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 Clone for OptionGroup[src]

impl Debug for OptionGroup[src]

impl Default for OptionGroup[src]

impl PartialEq<OptionGroup> for OptionGroup[src]

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