DescribeExport
Source:
src/AWS/DynamoDB/DescribeExport.ts
Runtime binding for dynamodb:DescribeExport.
Bind this operation to a Table inside a function runtime to get a callable
that reads the status of one of the bound table’s S3 exports by ARN. The
IAM grant covers every export of the bound table ({tableArn}/export/*).
Provide the DescribeExportHttp layer on the Function to satisfy the
binding.
Exporting to S3
Section titled “Exporting to S3”const describeExport = yield* AWS.DynamoDB.DescribeExport(table);
const response = yield* describeExport({ ExportArn: exportArn });const status = response.ExportDescription?.ExportStatus;