Class: Aws::DynamoDB::Types::SourceTableFeatureDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::SourceTableFeatureDetails
- 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
-
#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.
8504 8505 8506 8507 8508 8509 8510 8511 8512 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8504 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.
8504 8505 8506 8507 8508 8509 8510 8511 8512 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8504 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.
8504 8505 8506 8507 8508 8509 8510 8511 8512 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8504 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.
8504 8505 8506 8507 8508 8509 8510 8511 8512 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8504 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.
8504 8505 8506 8507 8508 8509 8510 8511 8512 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8504 class SourceTableFeatureDetails < Struct.new( :local_secondary_indexes, :global_secondary_indexes, :stream_description, :time_to_live_description, :sse_description) SENSITIVE = [] include Aws::Structure end |