Skip to content

Describe Export

dynamodb_describe_export R Documentation

Describes an existing table export

Description

Describes an existing table export.

Usage

dynamodb_describe_export(ExportArn)

Arguments

ExportArn

[required] The Amazon Resource Name (ARN) associated with the export.

Value

A list with the following syntax:

list(
  ExportDescription = list(
    ExportArn = "string",
    ExportStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED",
    StartTime = as.POSIXct(
      "2015-01-01"
    ),
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    ExportManifest = "string",
    TableArn = "string",
    TableId = "string",
    ExportTime = as.POSIXct(
      "2015-01-01"
    ),
    ClientToken = "string",
    S3Bucket = "string",
    S3BucketOwner = "string",
    S3Prefix = "string",
    S3SseAlgorithm = "AES256"|"KMS",
    S3SseKmsKeyId = "string",
    FailureCode = "string",
    FailureMessage = "string",
    ExportFormat = "DYNAMODB_JSON"|"ION",
    BilledSizeBytes = 123,
    ItemCount = 123,
    ExportType = "FULL_EXPORT"|"INCREMENTAL_EXPORT",
    IncrementalExportSpecification = list(
      ExportFromTime = as.POSIXct(
        "2015-01-01"
      ),
      ExportToTime = as.POSIXct(
        "2015-01-01"
      ),
      ExportViewType = "NEW_IMAGE"|"NEW_AND_OLD_IMAGES"
    )
  )
)

Request syntax

svc$describe_export(
  ExportArn = "string"
)