Class: Aws::SecurityHub::Types::Occurrences
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Occurrences
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
When making an API call, you may pass Occurrences data as a hash:
{
line_ranges: [
{
start: 1,
end: 1,
start_column: 1,
},
],
offset_ranges: [
{
start: 1,
end: 1,
start_column: 1,
},
],
pages: [
{
page_number: 1,
line_range: {
start: 1,
end: 1,
start_column: 1,
},
offset_range: {
start: 1,
end: 1,
start_column: 1,
},
},
],
records: [
{
json_path: "NonEmptyString",
record_index: 1,
},
],
cells: [
{
column: 1,
row: 1,
column_name: "NonEmptyString",
cell_reference: "NonEmptyString",
},
],
}
The detected occurrences of sensitive data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cells ⇒ Array<Types::Cell>
Occurrences of sensitive data detected in Microsoft Excel workbooks, comma-separated value (CSV) files, or tab-separated value (TSV) files.
-
#line_ranges ⇒ Array<Types::Range>
Occurrences of sensitive data detected in a non-binary text file or a Microsoft Word file.
-
#offset_ranges ⇒ Array<Types::Range>
Occurrences of sensitive data detected in a binary text file.
-
#pages ⇒ Array<Types::Page>
Occurrences of sensitive data in an Adobe Portable Document Format (PDF) file.
-
#records ⇒ Array<Types::Record>
Occurrences of sensitive data in an Apache Avro object container or an Apache Parquet file.
Instance Attribute Details
#cells ⇒ Array<Types::Cell>
Occurrences of sensitive data detected in Microsoft Excel workbooks, comma-separated value (CSV) files, or tab-separated value (TSV) files.
34277 34278 34279 34280 34281 34282 34283 34284 34285 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34277 class Occurrences < Struct.new( :line_ranges, :offset_ranges, :pages, :records, :cells) SENSITIVE = [] include Aws::Structure end |
#line_ranges ⇒ Array<Types::Range>
Occurrences of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.
34277 34278 34279 34280 34281 34282 34283 34284 34285 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34277 class Occurrences < Struct.new( :line_ranges, :offset_ranges, :pages, :records, :cells) SENSITIVE = [] include Aws::Structure end |
#offset_ranges ⇒ Array<Types::Range>
Occurrences of sensitive data detected in a binary text file.
34277 34278 34279 34280 34281 34282 34283 34284 34285 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34277 class Occurrences < Struct.new( :line_ranges, :offset_ranges, :pages, :records, :cells) SENSITIVE = [] include Aws::Structure end |
#pages ⇒ Array<Types::Page>
Occurrences of sensitive data in an Adobe Portable Document Format (PDF) file.
34277 34278 34279 34280 34281 34282 34283 34284 34285 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34277 class Occurrences < Struct.new( :line_ranges, :offset_ranges, :pages, :records, :cells) SENSITIVE = [] include Aws::Structure end |
#records ⇒ Array<Types::Record>
Occurrences of sensitive data in an Apache Avro object container or an Apache Parquet file.
34277 34278 34279 34280 34281 34282 34283 34284 34285 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34277 class Occurrences < Struct.new( :line_ranges, :offset_ranges, :pages, :records, :cells) SENSITIVE = [] include Aws::Structure end |