Class: Aws::DynamoDB::Types::SourceTableFeatureDetails

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

Overview

Contains the details of the features enabled on the table when the backup was created. For example, LSIs, GSIs, streams, TTL.

Instance Attribute Summary collapse

Instance Attribute Details

#global_secondary_indexesArray<Types::GlobalSecondaryIndexInfo>

Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection and ProvisionedThroughput for the GSIs on the table at the time of backup.



6435
6436
6437
6438
6439
6440
6441
6442
# File 'lib/aws-sdk-dynamodb/types.rb', line 6435

class SourceTableFeatureDetails < Struct.new(
  :local_secondary_indexes,
  :global_secondary_indexes,
  :stream_description,
  :time_to_live_description,
  :sse_description)
  include Aws::Structure
end

#local_secondary_indexesArray<Types::LocalSecondaryIndexInfo>

Represents the LSI properties for the table when the backup was created. It includes the IndexName, KeySchema and Projection for the LSIs on the table at the time of backup.

Returns:



6435
6436
6437
6438
6439
6440
6441
6442
# File 'lib/aws-sdk-dynamodb/types.rb', line 6435

class SourceTableFeatureDetails < Struct.new(
  :local_secondary_indexes,
  :global_secondary_indexes,
  :stream_description,
  :time_to_live_description,
  :sse_description)
  include Aws::Structure
end

#sse_descriptionTypes::SSEDescription

The description of the server-side encryption status on the table when the backup was created.



6435
6436
6437
6438
6439
6440
6441
6442
# File 'lib/aws-sdk-dynamodb/types.rb', line 6435

class SourceTableFeatureDetails < Struct.new(
  :local_secondary_indexes,
  :global_secondary_indexes,
  :stream_description,
  :time_to_live_description,
  :sse_description)
  include Aws::Structure
end

#stream_descriptionTypes::StreamSpecification

Stream settings on the table when the backup was created.



6435
6436
6437
6438
6439
6440
6441
6442
# File 'lib/aws-sdk-dynamodb/types.rb', line 6435

class SourceTableFeatureDetails < Struct.new(
  :local_secondary_indexes,
  :global_secondary_indexes,
  :stream_description,
  :time_to_live_description,
  :sse_description)
  include Aws::Structure
end

#time_to_live_descriptionTypes::TimeToLiveDescription

Time to Live settings on the table when the backup was created.



6435
6436
6437
6438
6439
6440
6441
6442
# File 'lib/aws-sdk-dynamodb/types.rb', line 6435

class SourceTableFeatureDetails < Struct.new(
  :local_secondary_indexes,
  :global_secondary_indexes,
  :stream_description,
  :time_to_live_description,
  :sse_description)
  include Aws::Structure
end