Class: Aws::S3Tables::Types::TableRecordExpirationConfigurationValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Tables::Types::TableRecordExpirationConfigurationValue
- Defined in:
- gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb
Overview
The expiration configuration settings for records in a table, and the status of the configuration. If the status of the configuration is enabled, records expire and are automatically removed after the number of days specified in the record expiration settings for the table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#settings ⇒ Types::TableRecordExpirationSettings
The expiration settings for records in the table.
-
#status ⇒ String
The status of the expiration settings for records in the table.
Instance Attribute Details
#settings ⇒ Types::TableRecordExpirationSettings
The expiration settings for records in the table.
2381 2382 2383 2384 2385 2386 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2381 class TableRecordExpirationConfigurationValue < Struct.new( :status, :settings) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the expiration settings for records in the table.
2381 2382 2383 2384 2385 2386 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2381 class TableRecordExpirationConfigurationValue < Struct.new( :status, :settings) SENSITIVE = [] include Aws::Structure end |