Class: Aws::SecurityHub::Types::Record

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb

Overview

An occurrence of sensitive data in an Apache Avro object container or an Apache Parquet file.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#json_pathString

The path, as a JSONPath expression, to the field in the record that contains the data. If the field name is longer than 20 characters, it is truncated. If the path is longer than 250 characters, it is truncated.

Returns:

  • (String)


27983
27984
27985
27986
27987
27988
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27983

class Record < Struct.new(
  :json_path,
  :record_index)
  SENSITIVE = []
  include Aws::Structure
end

#record_indexInteger

The record index, starting from 0, for the record that contains the data.

Returns:

  • (Integer)


27983
27984
27985
27986
27987
27988
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27983

class Record < Struct.new(
  :json_path,
  :record_index)
  SENSITIVE = []
  include Aws::Structure
end