Learn R Programming

paws.database (version 0.1.12)

dynamodb_describe_export: Describes an existing table export

Description

Describes an existing table export.

Usage

dynamodb_describe_export(ExportArn)

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
  )
)

Arguments

ExportArn

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

Request syntax

svc$describe_export(
  ExportArn = "string"
)