[][src]Struct rusoto_rds::DBInstanceAutomatedBackup

pub struct DBInstanceAutomatedBackup {
    pub allocated_storage: Option<i64>,
    pub availability_zone: Option<String>,
    pub db_instance_arn: Option<String>,
    pub db_instance_identifier: Option<String>,
    pub dbi_resource_id: Option<String>,
    pub encrypted: Option<bool>,
    pub engine: Option<String>,
    pub engine_version: Option<String>,
    pub iam_database_authentication_enabled: Option<bool>,
    pub instance_create_time: Option<String>,
    pub iops: Option<i64>,
    pub kms_key_id: Option<String>,
    pub license_model: Option<String>,
    pub master_username: Option<String>,
    pub option_group_name: Option<String>,
    pub port: Option<i64>,
    pub region: Option<String>,
    pub restore_window: Option<RestoreWindow>,
    pub status: Option<String>,
    pub storage_type: Option<String>,
    pub tde_credential_arn: Option<String>,
    pub timezone: Option<String>,
    pub vpc_id: Option<String>,
}

An automated backup of a DB instance. It it consists of system backups, transaction logs, and the database instance properties that existed at the time you deleted the source instance.

Fields

allocated_storage: Option<i64>

Specifies the allocated storage size in gibibytes (GiB).

availability_zone: Option<String>

The Availability Zone that the automated backup was created in. For information on AWS Regions and Availability Zones, see Regions and Availability Zones.

db_instance_arn: Option<String>

The Amazon Resource Name (ARN) for the automated backup.

db_instance_identifier: Option<String>

The customer id of the instance that is/was associated with the automated backup.

dbi_resource_id: Option<String>

The identifier for the source DB instance, which can't be changed and which is unique to an AWS Region.

encrypted: Option<bool>

Specifies whether the automated backup is encrypted.

engine: Option<String>

The name of the database engine for this automated backup.

engine_version: Option<String>

The version of the database engine for the automated backup.

iam_database_authentication_enabled: Option<bool>

True if mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.

instance_create_time: Option<String>

Provides the date and time that the DB instance was created.

iops: Option<i64>

The IOPS (I/O operations per second) value for the automated backup.

kms_key_id: Option<String>

The AWS KMS key ID for an automated backup. The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key.

license_model: Option<String>

License model information for the automated backup.

master_username: Option<String>

The license model of an automated backup.

option_group_name: Option<String>

The option group the automated backup is associated with. If omitted, the default option group for the engine specified is used.

port: Option<i64>

The port number that the automated backup used for connections.

Default: Inherits from the source DB instance

Valid Values: 1150-65535

region: Option<String>

The AWS Region associated with the automated backup.

restore_window: Option<RestoreWindow>

Earliest and latest time an instance can be restored to.

status: Option<String>

Provides a list of status information for an automated backup:

  • active - automated backups for current instances

  • retained - automated backups for deleted instances

  • creating - automated backups that are waiting for the first automated snapshot to be available.

storage_type: Option<String>

Specifies the storage type associated with the automated backup.

tde_credential_arn: Option<String>

The ARN from the key store with which the automated backup is associated for TDE encryption.

timezone: Option<String>

The time zone of the automated backup. In most cases, the Timezone element is empty. Timezone content appears only for Microsoft SQL Server DB instances that were created with a time zone specified.

vpc_id: Option<String>

Provides the VPC ID associated with the DB instance

Trait Implementations

impl Clone for DBInstanceAutomatedBackup[src]

impl Default for DBInstanceAutomatedBackup[src]

impl PartialEq<DBInstanceAutomatedBackup> for DBInstanceAutomatedBackup[src]

impl Debug for DBInstanceAutomatedBackup[src]

impl StructuralPartialEq for DBInstanceAutomatedBackup[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self