Struct rusoto_opsworkscm::UpdateServerRequest [] [src]

pub struct UpdateServerRequest {
    pub backup_retention_count: Option<i64>,
    pub disable_automated_backup: Option<bool>,
    pub preferred_backup_window: Option<String>,
    pub preferred_maintenance_window: Option<String>,
    pub server_name: String,
}

Fields

Sets the number of automated backups that you want to keep.

Setting DisableAutomatedBackup to true disables automated or scheduled backups. Automated backups are enabled by default.

The name of the server to update.

Trait Implementations

impl Default for UpdateServerRequest
[src]

[src]

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

impl Debug for UpdateServerRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateServerRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations