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)


28922
28923
28924
28925
28926
28927
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 28922

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)


28922
28923
28924
28925
28926
28927
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 28922

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