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.
2232 2233 2234 2235 2236 2237 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2232 class TableRecordExpirationConfigurationValue < Struct.new( :status, :settings) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the expiration settings for records in the table.
2232 2233 2234 2235 2236 2237 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2232 class TableRecordExpirationConfigurationValue < Struct.new( :status, :settings) SENSITIVE = [] include Aws::Structure end |