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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/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)


3690
3691
3692
3693
3694
3695
3696
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3690

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)


3690
3691
3692
3693
3694
3695
3696
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3690

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)


3690
3691
3692
3693
3694
3695
3696
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 3690

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