Class: Aws::DynamoDB::Types::SourceTableFeatureDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::SourceTableFeatureDetails
- Defined in:
- gems/aws-sdk-dynamodb/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
-
#global_secondary_indexes ⇒ Array<Types::GlobalSecondaryIndexInfo>
Represents the GSI properties for the table when the backup was created.
-
#local_secondary_indexes ⇒ Array<Types::LocalSecondaryIndexInfo>
Represents the LSI properties for the table when the backup was created.
-
#sse_description ⇒ Types::SSEDescription
The description of the server-side encryption status on the table when the backup was created.
-
#stream_description ⇒ Types::StreamSpecification
Stream settings on the table when the backup was created.
-
#time_to_live_description ⇒ Types::TimeToLiveDescription
Time to Live settings on the table when the backup was created.
Instance Attribute Details
#global_secondary_indexes ⇒ Array<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.
8536 8537 8538 8539 8540 8541 8542 8543 8544 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8536 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_indexes ⇒ Array<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.
8536 8537 8538 8539 8540 8541 8542 8543 8544 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8536 class SourceTableFeatureDetails < Struct.new( :local_secondary_indexes, :global_secondary_indexes, :stream_description, :time_to_live_description, :sse_description) SENSITIVE = [] include Aws::Structure end |
#sse_description ⇒ Types::SSEDescription
The description of the server-side encryption status on the table when the backup was created.
8536 8537 8538 8539 8540 8541 8542 8543 8544 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8536 class SourceTableFeatureDetails < Struct.new( :local_secondary_indexes, :global_secondary_indexes, :stream_description, :time_to_live_description, :sse_description) SENSITIVE = [] include Aws::Structure end |
#stream_description ⇒ Types::StreamSpecification
Stream settings on the table when the backup was created.
8536 8537 8538 8539 8540 8541 8542 8543 8544 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8536 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_description ⇒ Types::TimeToLiveDescription
Time to Live settings on the table when the backup was created.
8536 8537 8538 8539 8540 8541 8542 8543 8544 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8536 class SourceTableFeatureDetails < Struct.new( :local_secondary_indexes, :global_secondary_indexes, :stream_description, :time_to_live_description, :sse_description) SENSITIVE = [] include Aws::Structure end |