Class: Aws::S3Tables::Types::TableRecordExpirationSettings

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#daysInteger

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.

Returns:

  • (Integer)


2277
2278
2279
2280
2281
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2277

class TableRecordExpirationSettings < Struct.new(
  :days)
  SENSITIVE = []
  include Aws::Structure
end