_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( "type" VARCHAR, "name" VARCHAR, "account_id" VARCHAR, "via_profile_name" VARCHAR, "assumed_role_arn" VARCHAR, "organization" STRUCT( "account_name" VARCHAR, "id" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[], "master_account" STRUCT( "id" VARCHAR, "email" VARCHAR ), "parents" STRUCT( "type" VARCHAR, "id" VARCHAR, "name" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[] )[] ) ) |
export_description
Represents the properties of the export. | STRUCT( "export_arn" VARCHAR, "export_status" VARCHAR, "start_time" TIMESTAMP_S, "end_time" TIMESTAMP_S, "export_manifest" VARCHAR, "table_arn" VARCHAR, "table_id" VARCHAR, "export_time" TIMESTAMP_S, "client_token" VARCHAR, "s3_bucket" VARCHAR, "s3_bucket_owner" VARCHAR, "s3_prefix" VARCHAR, "s3_sse_algorithm" VARCHAR, "s3_sse_kms_key_id" VARCHAR, "failure_code" VARCHAR, "failure_message" VARCHAR, "export_format" VARCHAR, "billed_size_bytes" BIGINT, "item_count" BIGINT, "export_type" VARCHAR, "incremental_export_specification" STRUCT( "export_from_time" TIMESTAMP_S, "export_to_time" TIMESTAMP_S, "export_view_type" VARCHAR ) ) |
Show child fields- export_description.billed_size_bytes
The billable size of the table export.
- export_description.client_token
The client token that was provided for the export task. A client token makes calls to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call.
- export_description.end_time
The time at which the export task completed.
- export_description.export_arn
The Amazon Resource Name (ARN) of the table export.
- export_description.export_format
The format of the exported data. Valid values for ExportFormat are DYNAMODB_JSON or ION.
- export_description.export_manifest
The name of the manifest file for the export task.
- export_description.export_status
Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
- export_description.export_time
Point in time from which table data was exported.
- export_description.export_type
The type of export that was performed. Valid values are FULL_EXPORT or INCREMENTAL_EXPORT.
- export_description.failure_code
Status code for the result of the failed export.
- export_description.failure_message
Export failure reason description.
- export_description.incremental_export_specification
Optional object containing the parameters specific to an incremental export. Show child fields- export_description.incremental_export_specification.export_from_time
Time in the past which provides the inclusive start range for the export table's data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table's state including and after this point in time.
- export_description.incremental_export_specification.export_to_time
Time in the past which provides the exclusive end range for the export table's data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table's state just prior to this point in time. If this is not provided, the latest time with data available will be used.
- export_description.incremental_export_specification.export_view_type
The view type that was chosen for the export. Valid values are NEW_AND_OLD_IMAGES and NEW_IMAGES. The default value is NEW_AND_OLD_IMAGES.
- export_description.item_count
The number of items exported.
- export_description.s3_bucket
The name of the Amazon S3 bucket containing the export.
- export_description.s3_bucket_owner
The ID of the Amazon Web Services account that owns the bucket containing the export.
- export_description.s3_prefix
The Amazon S3 bucket prefix used as the file name and path of the exported snapshot.
- export_description.s3_sse_algorithm
Type of encryption used on the bucket where export data is stored. Valid values for S3SseAlgorithm are:
- export_description.s3_sse_kms_key_id
The ID of the KMS managed key used to encrypt the S3 bucket where export data is stored (if applicable).
- export_description.start_time
The time at which the export task began.
- export_description.table_arn
The Amazon Resource Name (ARN) of the table that was exported.
- export_description.table_id
Unique ID of the table that was exported.
|