Class: Aws::DynamoDB::Types::ExportSummary

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Summary information about an export task.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#export_arnString

The Amazon Resource Name (ARN) of the export.

Returns:

  • (String)


3669
3670
3671
3672
3673
3674
3675
# File 'lib/aws-sdk-dynamodb/types.rb', line 3669

class ExportSummary < Struct.new(
  :export_arn,
  :export_status,
  :export_type)
  SENSITIVE = []
  include Aws::Structure
end

#export_statusString

Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.

Returns:

  • (String)


3669
3670
3671
3672
3673
3674
3675
# File 'lib/aws-sdk-dynamodb/types.rb', line 3669

class ExportSummary < Struct.new(
  :export_arn,
  :export_status,
  :export_type)
  SENSITIVE = []
  include Aws::Structure
end

#export_typeString

The type of export that was performed. Valid values are ‘FULL_EXPORT` or `INCREMENTAL_EXPORT`.

Returns:

  • (String)


3669
3670
3671
3672
3673
3674
3675
# File 'lib/aws-sdk-dynamodb/types.rb', line 3669

class ExportSummary < Struct.new(
  :export_arn,
  :export_status,
  :export_type)
  SENSITIVE = []
  include Aws::Structure
end