Struct aws_sdk_rds::output::CancelExportTaskOutput
source · [−]#[non_exhaustive]pub struct CancelExportTaskOutput { /* private fields */ }Expand description
Contains the details of a snapshot export to Amazon S3.
This data type is used as a response element in the DescribeExportTasks action.
Implementations
sourceimpl CancelExportTaskOutput
impl CancelExportTaskOutput
sourcepub fn export_task_identifier(&self) -> Option<&str>
pub fn export_task_identifier(&self) -> Option<&str>
A unique identifier for the snapshot export task. This ID isn't an identifier for the Amazon S3 bucket where the snapshot is exported to.
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the snapshot exported to Amazon S3.
sourcepub fn export_only(&self) -> Option<&[String]>
pub fn export_only(&self) -> Option<&[String]>
The data exported from the snapshot. Valid values are the following:
-
database- Export all the data from a specified database. -
database.tabletable-name - Export a table of the snapshot. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL. -
database.schemaschema-name - Export a database schema of the snapshot. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL. -
database.schema.tabletable-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.
sourcepub fn snapshot_time(&self) -> Option<&DateTime>
pub fn snapshot_time(&self) -> Option<&DateTime>
The time that the snapshot was created.
sourcepub fn task_start_time(&self) -> Option<&DateTime>
pub fn task_start_time(&self) -> Option<&DateTime>
The time that the snapshot export task started.
sourcepub fn task_end_time(&self) -> Option<&DateTime>
pub fn task_end_time(&self) -> Option<&DateTime>
The time that the snapshot export task completed.
sourcepub fn s3_prefix(&self) -> Option<&str>
pub fn s3_prefix(&self) -> Option<&str>
The Amazon S3 bucket prefix that is the file name and path of the exported snapshot.
sourcepub fn iam_role_arn(&self) -> Option<&str>
pub fn iam_role_arn(&self) -> Option<&str>
The name of the IAM role that is used to write to Amazon S3 when exporting a snapshot.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The key identifier of the Amazon Web Services KMS key that is used to encrypt the snapshot when it's exported to Amazon S3. The KMS key identifier is its key ARN, key ID, alias ARN, or alias name. The IAM role used for the snapshot export must have encryption and decryption permissions to use this KMS key.
sourcepub fn percent_progress(&self) -> i32
pub fn percent_progress(&self) -> i32
The progress of the snapshot export task as a percentage.
sourcepub fn total_extracted_data_in_gb(&self) -> i32
pub fn total_extracted_data_in_gb(&self) -> i32
The total amount of data exported, in gigabytes.
sourcepub fn failure_cause(&self) -> Option<&str>
pub fn failure_cause(&self) -> Option<&str>
The reason the export failed, if it failed.
sourcepub fn warning_message(&self) -> Option<&str>
pub fn warning_message(&self) -> Option<&str>
A warning about the snapshot export task.
sourceimpl CancelExportTaskOutput
impl CancelExportTaskOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CancelExportTaskOutput.
Trait Implementations
sourceimpl Clone for CancelExportTaskOutput
impl Clone for CancelExportTaskOutput
sourcefn clone(&self) -> CancelExportTaskOutput
fn clone(&self) -> CancelExportTaskOutput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more