Class: Aws::DynamoDB::Types::ExportSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ExportSummary
- 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
-
#export_arn ⇒ String
The Amazon Resource Name (ARN) of the export.
-
#export_status ⇒ String
Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
-
#export_type ⇒ String
The type of export that was performed.
Instance Attribute Details
#export_arn ⇒ String
The Amazon Resource Name (ARN) of the export.
3698 3699 3700 3701 3702 3703 3704 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 3698 class ExportSummary < Struct.new( :export_arn, :export_status, :export_type) SENSITIVE = [] include Aws::Structure end |
#export_status ⇒ String
Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
3698 3699 3700 3701 3702 3703 3704 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 3698 class ExportSummary < Struct.new( :export_arn, :export_status, :export_type) SENSITIVE = [] include Aws::Structure end |
#export_type ⇒ String
The type of export that was performed. Valid values are ‘FULL_EXPORT` or `INCREMENTAL_EXPORT`.
3698 3699 3700 3701 3702 3703 3704 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 3698 class ExportSummary < Struct.new( :export_arn, :export_status, :export_type) SENSITIVE = [] include Aws::Structure end |