aws.migrationhubstrategy.get_import_file_task
Example SQL Queries
SELECT * FROMaws.migrationhubstrategy.get_import_file_taskWHERE"id" = 'VALUE';Description
Retrieves the details about a specific import task.
Table Definition
| Column Name | Column Data Type |
|---|---|
| id Required Input Column The import file task id returned in the response of StartImportFileTask. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| completion_time The time that the import task completed. | TIMESTAMP_S |
| import_name The name of the import task given in StartImportFileTask. | VARCHAR |
| input_s3_bucket The S3 bucket where import file is located. | VARCHAR |
| input_s3_key The Amazon S3 key name of the import file. | VARCHAR |
| number_of_records_failed The number of records that failed to be imported. | BIGINT |
| number_of_records_success The number of records successfully imported. | BIGINT |
| start_time Start time of the import task. | TIMESTAMP_S |
| status Status of import file task. | VARCHAR |
| status_report_s3_bucket The S3 bucket name for status report of import task. | VARCHAR |
| status_report_s3_key The Amazon S3 key name for status report of import task. The report contains details about whether each record imported successfully or why it did not. | VARCHAR |