[][src]Struct rusoto_neptune::ModifyDBParameterGroupMessage

pub struct ModifyDBParameterGroupMessage {
    pub db_parameter_group_name: String,
    pub parameters: Vec<Parameter>,
}

Fields

The name of the DB parameter group.

Constraints:

  • If supplied, must match the name of an existing DBParameterGroup.

An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method must be supplied; subsequent arguments are optional. A maximum of 20 parameters can be modified in a single request.

Valid Values (for the application method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when you reboot the DB instance without failover.

Trait Implementations

impl Clone for ModifyDBParameterGroupMessage
[src]

Performs copy-assignment from source. Read more

impl Default for ModifyDBParameterGroupMessage
[src]

impl PartialEq<ModifyDBParameterGroupMessage> for ModifyDBParameterGroupMessage
[src]

impl Debug for ModifyDBParameterGroupMessage
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Same for T

Should always be Self