Struct aws_sdk_rds::types::DbInstanceAutomatedBackup
source · #[non_exhaustive]pub struct DbInstanceAutomatedBackup { /* private fields */ }Expand description
An automated backup of a DB instance. It consists of system backups, transaction logs, and the database instance properties that existed at the time you deleted the source instance.
Implementations§
source§impl DbInstanceAutomatedBackup
impl DbInstanceAutomatedBackup
sourcepub fn db_instance_arn(&self) -> Option<&str>
pub fn db_instance_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the automated backups.
sourcepub fn dbi_resource_id(&self) -> Option<&str>
pub fn dbi_resource_id(&self) -> Option<&str>
The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
The Amazon Web Services Region associated with the automated backup.
sourcepub fn db_instance_identifier(&self) -> Option<&str>
pub fn db_instance_identifier(&self) -> Option<&str>
The customer id of the instance that is/was associated with the automated backup.
sourcepub fn restore_window(&self) -> Option<&RestoreWindow>
pub fn restore_window(&self) -> Option<&RestoreWindow>
Earliest and latest time an instance can be restored to.
sourcepub fn allocated_storage(&self) -> i32
pub fn allocated_storage(&self) -> i32
Specifies the allocated storage size in gibibytes (GiB).
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
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.
sourcepub fn port(&self) -> i32
pub fn port(&self) -> i32
The port number that the automated backup used for connections.
Default: Inherits from the source DB instance
Valid Values: 1150-65535
sourcepub fn availability_zone(&self) -> Option<&str>
pub fn availability_zone(&self) -> Option<&str>
The Availability Zone that the automated backup was created in. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.
sourcepub fn instance_create_time(&self) -> Option<&DateTime>
pub fn instance_create_time(&self) -> Option<&DateTime>
Provides the date and time that the DB instance was created.
sourcepub fn master_username(&self) -> Option<&str>
pub fn master_username(&self) -> Option<&str>
The license model of an automated backup.
sourcepub fn engine(&self) -> Option<&str>
pub fn engine(&self) -> Option<&str>
The name of the database engine for this automated backup.
sourcepub fn engine_version(&self) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
The version of the database engine for the automated backup.
sourcepub fn license_model(&self) -> Option<&str>
pub fn license_model(&self) -> Option<&str>
License model information for the automated backup.
sourcepub fn iops(&self) -> Option<i32>
pub fn iops(&self) -> Option<i32>
The IOPS (I/O operations per second) value for the automated backup.
sourcepub fn option_group_name(&self) -> Option<&str>
pub fn option_group_name(&self) -> Option<&str>
The option group the automated backup is associated with. If omitted, the default option group for the engine specified is used.
sourcepub fn tde_credential_arn(&self) -> Option<&str>
pub fn tde_credential_arn(&self) -> Option<&str>
The ARN from the key store with which the automated backup is associated for TDE encryption.
sourcepub fn storage_type(&self) -> Option<&str>
pub fn storage_type(&self) -> Option<&str>
Specifies the storage type associated with the automated backup.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The Amazon Web Services KMS key ID for an automated backup.
The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
sourcepub fn timezone(&self) -> Option<&str>
pub fn timezone(&self) -> Option<&str>
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.
sourcepub fn iam_database_authentication_enabled(&self) -> bool
pub fn iam_database_authentication_enabled(&self) -> bool
True if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
sourcepub fn backup_retention_period(&self) -> Option<i32>
pub fn backup_retention_period(&self) -> Option<i32>
The retention period for the automated backups.
sourcepub fn db_instance_automated_backups_arn(&self) -> Option<&str>
pub fn db_instance_automated_backups_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the replicated automated backups.
sourcepub fn db_instance_automated_backups_replications(
&self
) -> Option<&[DbInstanceAutomatedBackupsReplication]>
pub fn db_instance_automated_backups_replications( &self ) -> Option<&[DbInstanceAutomatedBackupsReplication]>
The list of replications to different Amazon Web Services Regions associated with the automated backup.
sourcepub fn backup_target(&self) -> Option<&str>
pub fn backup_target(&self) -> Option<&str>
Specifies where automated backups are stored: Amazon Web Services Outposts or the Amazon Web Services Region.
sourcepub fn storage_throughput(&self) -> Option<i32>
pub fn storage_throughput(&self) -> Option<i32>
Specifies the storage throughput for the automated backup.
source§impl DbInstanceAutomatedBackup
impl DbInstanceAutomatedBackup
sourcepub fn builder() -> DbInstanceAutomatedBackupBuilder
pub fn builder() -> DbInstanceAutomatedBackupBuilder
Creates a new builder-style object to manufacture DbInstanceAutomatedBackup.
Trait Implementations§
source§impl Clone for DbInstanceAutomatedBackup
impl Clone for DbInstanceAutomatedBackup
source§fn clone(&self) -> DbInstanceAutomatedBackup
fn clone(&self) -> DbInstanceAutomatedBackup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DbInstanceAutomatedBackup
impl Debug for DbInstanceAutomatedBackup
source§impl PartialEq<DbInstanceAutomatedBackup> for DbInstanceAutomatedBackup
impl PartialEq<DbInstanceAutomatedBackup> for DbInstanceAutomatedBackup
source§fn eq(&self, other: &DbInstanceAutomatedBackup) -> bool
fn eq(&self, other: &DbInstanceAutomatedBackup) -> bool
self and other values to be equal, and is used
by ==.