Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ExportTask

import type { ExportTask } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";

Contains the details of a snapshot or cluster export to Amazon S3.

This data type is used as a response element in the DescribeExportTasks action.

interface ExportTask {
ExportOnly: string[];
ExportTaskIdentifier?: string | null;
FailureCause?: string | null;
IamRoleArn?: string | null;
KmsKeyId?: string | null;
PercentProgress?: number | null;
S3Bucket?: string | null;
S3Prefix?: string | null;
SnapshotTime?: Date | number | null;
SourceArn?: string | null;
SourceType?: ExportSourceType | null;
Status?: string | null;
TaskEndTime?: Date | number | null;
TaskStartTime?: Date | number | null;
TotalExtractedDataInGB?: number | null;
WarningMessage?: string | null;
}

§Properties

§
ExportOnly: string[]
[src]

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

  • database - Export all the data from a specified database.
  • database.table table-name - Export a table of the snapshot or cluster. 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 or cluster. 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.
§
ExportTaskIdentifier?: string | null
[src]

A unique identifier for the snapshot or cluster export task. This ID isn't an identifier for the Amazon S3 bucket where the data is exported.

§
FailureCause?: string | null
[src]

The reason the export failed, if it failed.

§
IamRoleArn?: string | null
[src]

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

§
KmsKeyId?: string | null
[src]

The key identifier of the Amazon Web Services KMS key that is used to encrypt the data 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 export must have encryption and decryption permissions to use this KMS key.

§
PercentProgress?: number | null
[src]

The progress of the snapshot or cluster export task as a percentage.

§
S3Bucket?: string | null
[src]

The Amazon S3 bucket that the snapshot or cluster is exported to.

§
S3Prefix?: string | null
[src]

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

§
SnapshotTime?: Date | number | null
[src]

The time that the snapshot was created.

§
SourceArn?: string | null
[src]

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

§
SourceType?: ExportSourceType | null
[src]

The type of source for the export.

§
Status?: string | null
[src]

The progress status of the export task. The status can be one of the following:

  • CANCELED
    
  • CANCELING
    
  • COMPLETE
    
  • FAILED
    
  • IN_PROGRESS
    
  • STARTING
    
§
TaskEndTime?: Date | number | null
[src]

The time that the snapshot or cluster export task ended.

§
TaskStartTime?: Date | number | null
[src]

The time that the snapshot or cluster export task started.

§
TotalExtractedDataInGB?: number | null
[src]

The total amount of data exported, in gigabytes.

§
WarningMessage?: string | null
[src]

A warning about the snapshot or cluster export task.