Class: Aws::S3Tables::Types::TableRecordExpirationSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Tables::Types::TableRecordExpirationSettings
- Defined in:
- gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb
Overview
The record expiration setting that specifies when records expire and are automatically removed from a table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#days ⇒ Integer
If you enable record expiration for a table, you can specify the number of days to retain your table records.
Instance Attribute Details
#days ⇒ Integer
If you enable record expiration for a table, you can specify the
number of days to retain your table records. For example, to retain
your table records for one year, set this value to 365.
2527 2528 2529 2530 2531 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2527 class TableRecordExpirationSettings < Struct.new( :days) SENSITIVE = [] include Aws::Structure end |