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.

Constant Summary collapse

SENSITIVE =
[]

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.



8040
8041
8042
8043
8044
8045
8046
8047
8048
# File 'lib/aws-sdk-dynamodb/types.rb', line 8040

class SourceTableFeatureDetails < Struct.new(
  :local_secondary_indexes,
  :global_secondary_indexes,
  :stream_description,
  :time_to_live_description,
  :sse_description)
  SENSITIVE = []
  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:



8040
8041
8042
8043
8044
8045
8046
8047
8048
# File 'lib/aws-sdk-dynamodb/types.rb', line 8040

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

#sse_descriptionTypes::SSEDescription

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



8040
8041
8042
8043
8044
8045
8046
8047
8048
# File 'lib/aws-sdk-dynamodb/types.rb', line 8040

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

#stream_descriptionTypes::StreamSpecification

Stream settings on the table when the backup was created.



8040
8041
8042
8043
8044
8045
8046
8047
8048
# File 'lib/aws-sdk-dynamodb/types.rb', line 8040

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

#time_to_live_descriptionTypes::TimeToLiveDescription

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



8040
8041
8042
8043
8044
8045
8046
8047
8048
# File 'lib/aws-sdk-dynamodb/types.rb', line 8040

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