[][src]Struct rusoto_rds::ExportTask

pub struct ExportTask {
    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>,
}

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

impl Clone for ExportTask[src]

impl Debug for ExportTask[src]

impl Default for ExportTask[src]

impl PartialEq<ExportTask> for ExportTask[src]

impl StructuralPartialEq for ExportTask[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.