#[non_exhaustive]
pub struct CancelExportTaskOutput {
Show 15 fields pub export_task_identifier: Option<String>, pub source_arn: Option<String>, pub export_only: Option<Vec<String>>, pub snapshot_time: Option<DateTime>, pub task_start_time: Option<DateTime>, pub task_end_time: Option<DateTime>, pub s3_bucket: Option<String>, pub s3_prefix: Option<String>, pub iam_role_arn: Option<String>, pub kms_key_id: Option<String>, pub status: Option<String>, pub percent_progress: i32, pub total_extracted_data_in_gb: i32, pub failure_cause: Option<String>, 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 (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
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.

source_arn: Option<String>

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

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.

snapshot_time: Option<DateTime>

The time that the snapshot was created.

task_start_time: Option<DateTime>

The time that the snapshot export task started.

task_end_time: Option<DateTime>

The time that the snapshot export task completed.

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.

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 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.

status: Option<String>

The progress status of the export task.

percent_progress: i32

The progress of the snapshot export task as a percentage.

total_extracted_data_in_gb: i32

The total amount of data exported, in gigabytes.

failure_cause: Option<String>

The reason the export failed, if it failed.

warning_message: Option<String>

A warning about the snapshot export task.

Implementations

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.

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

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.

The time that the snapshot was created.

The time that the snapshot export task started.

The time that the snapshot export task completed.

The Amazon S3 bucket that the snapshot is exported to.

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

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

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.

The progress status of the export task.

The progress of the snapshot export task as a percentage.

The total amount of data exported, in gigabytes.

The reason the export failed, if it failed.

A warning about the snapshot export task.

Creates a new builder-style object to manufacture CancelExportTaskOutput

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

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.

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