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)


27808
27809
27810
27811
27812
27813
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27808

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)


27808
27809
27810
27811
27812
27813
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27808

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