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
Note:
When making an API call, you may pass Record data as a hash:
{
json_path: "NonEmptyString",
record_index: 1,
}
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.
34843 34844 34845 34846 34847 34848 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34843 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.
34843 34844 34845 34846 34847 34848 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34843 class Record < Struct.new( :json_path, :record_index) SENSITIVE = [] include Aws::Structure end |