Class: Aws::S3Tables::Types::TableRecordExpirationJobMetrics
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Tables::Types::TableRecordExpirationJobMetrics
- Defined in:
- gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb
Overview
Provides metrics for the record expiration job that most recently ran for a table. The metrics provide insight into the amount of data that was removed when the job ran.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deleted_data_files ⇒ Integer
The total number of data files that were removed when the job ran.
-
#deleted_records ⇒ Integer
The total number of records that were removed when the job ran.
-
#removed_files_size ⇒ Integer
The total size (in bytes) of the data files that were removed when the job ran.
Instance Attribute Details
#deleted_data_files ⇒ Integer
The total number of data files that were removed when the job ran.
2258 2259 2260 2261 2262 2263 2264 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2258 class TableRecordExpirationJobMetrics < Struct.new( :deleted_data_files, :deleted_records, :removed_files_size) SENSITIVE = [] include Aws::Structure end |
#deleted_records ⇒ Integer
The total number of records that were removed when the job ran.
2258 2259 2260 2261 2262 2263 2264 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2258 class TableRecordExpirationJobMetrics < Struct.new( :deleted_data_files, :deleted_records, :removed_files_size) SENSITIVE = [] include Aws::Structure end |
#removed_files_size ⇒ Integer
The total size (in bytes) of the data files that were removed when the job ran.
2258 2259 2260 2261 2262 2263 2264 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2258 class TableRecordExpirationJobMetrics < Struct.new( :deleted_data_files, :deleted_records, :removed_files_size) SENSITIVE = [] include Aws::Structure end |