Struct rusoto_rds::ApplyPendingMaintenanceActionMessage[][src]

pub struct ApplyPendingMaintenanceActionMessage {
    pub apply_action: String,
    pub opt_in_type: String,
    pub resource_identifier: String,
}

Fields

The pending maintenance action to apply to this resource.

Valid values: system-update, db-upgrade

A value that specifies the type of opt-in request, or undoes an opt-in request. An opt-in request of type immediate can't be undone.

Valid values:

  • immediate - Apply the maintenance action immediately.

  • next-maintenance - Apply the maintenance action during the next maintenance window for the resource.

  • undo-opt-in - Cancel any existing next-maintenance opt-in requests.

The RDS Amazon Resource Name (ARN) of the resource that the pending maintenance action applies to. For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

Trait Implementations

impl Default for ApplyPendingMaintenanceActionMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for ApplyPendingMaintenanceActionMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ApplyPendingMaintenanceActionMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ApplyPendingMaintenanceActionMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations