logo
pub struct ExportTask {
Show 15 fields pub export_only: Option<Vec<String>>, pub export_task_identifier: Option<String>, pub failure_cause: Option<String>, pub iam_role_arn: Option<String>, pub kms_key_id: Option<String>, pub percent_progress: Option<i64>, pub s3_bucket: Option<String>, pub s3_prefix: Option<String>, pub snapshot_time: Option<String>, pub source_arn: Option<String>, pub status: Option<String>, pub task_end_time: Option<String>, pub task_start_time: Option<String>, pub total_extracted_data_in_gb: Option<i64>, pub warning_message: Option<String>,
}
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.

Fields

export_only: Option<Vec<String>>

The data exported from the snapshot. Valid values are the following:

  • database - Export all the data from a specified database.

  • database.table table-name - Export a table of the snapshot. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL.

  • database.schema schema-name - Export a database schema of the snapshot. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

  • database.schema.table table-name - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL.

export_task_identifier: Option<String>

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.

failure_cause: Option<String>

The reason the export failed, if it failed.

iam_role_arn: Option<String>

The name of the IAM role that is used to write to Amazon S3 when exporting a snapshot.

kms_key_id: Option<String>

The key identifier of the Amazon Web Services KMS customer master key (CMK) that is used to encrypt the snapshot when it's exported to Amazon S3. The Amazon Web Services KMS CMK 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 Amazon Web Services KMS CMK.

percent_progress: Option<i64>

The progress of the snapshot export task as a percentage.

s3_bucket: Option<String>

The Amazon S3 bucket that the snapshot is exported to.

s3_prefix: Option<String>

The Amazon S3 bucket prefix that is the file name and path of the exported snapshot.

snapshot_time: Option<String>

The time that the snapshot was created.

source_arn: Option<String>

The Amazon Resource Name (ARN) of the snapshot exported to Amazon S3.

status: Option<String>

The progress status of the export task.

task_end_time: Option<String>

The time that the snapshot export task completed.

task_start_time: Option<String>

The time that the snapshot export task started.

total_extracted_data_in_gb: Option<i64>

The total amount of data exported, in gigabytes.

warning_message: Option<String>

A warning about the snapshot export task.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more