Class: Aws::S3Tables::Types::TableRecordExpirationJobMetrics

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

Instance Attribute Details

#deleted_data_filesInteger

The total number of data files that were removed when the job ran.

Returns:

  • (Integer)


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_recordsInteger

The total number of records that were removed when the job ran.

Returns:

  • (Integer)


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_sizeInteger

The total size (in bytes) of the data files that were removed when the job ran.

Returns:

  • (Integer)


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