Class: Aws::SecurityHub::Types::Record
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Record
- 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
-
#json_path ⇒ String
The path, as a JSONPath expression, to the field in the record that contains the data.
-
#record_index ⇒ Integer
The record index, starting from 0, for the record that contains the data.
Instance Attribute Details
#json_path ⇒ String
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.
27156 27157 27158 27159 27160 27161 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27156 class Record < Struct.new( :json_path, :record_index) SENSITIVE = [] include Aws::Structure end |
#record_index ⇒ Integer
The record index, starting from 0, for the record that contains the data.
27156 27157 27158 27159 27160 27161 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27156 class Record < Struct.new( :json_path, :record_index) SENSITIVE = [] include Aws::Structure end |