[][src]Struct rusoto_rds::ModifyOptionGroupMessage

pub struct ModifyOptionGroupMessage {
    pub apply_immediately: Option<bool>,
    pub option_group_name: String,
    pub options_to_include: Option<Vec<OptionConfiguration>>,
    pub options_to_remove: Option<Vec<String>>,
}

Fields

apply_immediately: Option<bool>

A value that indicates whether to apply the change immediately or during the next maintenance window for each instance associated with the option group.

option_group_name: String

The name of the option group to be modified.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance once it is associated with a DB instance

options_to_include: Option<Vec<OptionConfiguration>>

Options in this list are added to the option group or, if already present, the specified configuration is used to update the existing configuration.

options_to_remove: Option<Vec<String>>

Options in this list are removed from the option group.

Trait Implementations

impl Clone for ModifyOptionGroupMessage[src]

impl Default for ModifyOptionGroupMessage[src]

impl PartialEq<ModifyOptionGroupMessage> for ModifyOptionGroupMessage[src]

impl Debug for ModifyOptionGroupMessage[src]

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