[][src]Struct rusoto_rds::PromoteReadReplicaMessage

pub struct PromoteReadReplicaMessage {
    pub backup_retention_period: Option<i64>,
    pub db_instance_identifier: String,
    pub preferred_backup_window: Option<String>,
}

Fields

backup_retention_period: Option<i64>

The number of days to retain automated backups. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups.

Default: 1

Constraints:

db_instance_identifier: String

The DB instance identifier. This value is stored as a lowercase string.

Constraints:

Example: mydbinstance

preferred_backup_window: Option<String>

The daily time range during which automated backups are created if automated backups are enabled, using the BackupRetentionPeriod parameter.

The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. To see the time blocks available, see Adjusting the Preferred Maintenance Window in the Amazon RDS User Guide.

Constraints:

Trait Implementations

impl PartialEq<PromoteReadReplicaMessage> for PromoteReadReplicaMessage[src]

impl Default for PromoteReadReplicaMessage[src]

impl Clone for PromoteReadReplicaMessage[src]

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

Performs copy-assignment from source. Read more

impl Debug for PromoteReadReplicaMessage[src]

Auto Trait Implementations

impl Send for PromoteReadReplicaMessage

impl Sync for PromoteReadReplicaMessage

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

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

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self