[][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>

Indicates whether the changes should be applied 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 Default for ModifyOptionGroupMessage[src]

impl PartialEq<ModifyOptionGroupMessage> for ModifyOptionGroupMessage[src]

impl Clone for ModifyOptionGroupMessage[src]

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

Performs copy-assignment from source. Read more

impl Debug for ModifyOptionGroupMessage[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?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

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self