Class: Aws::SecurityHub::Types::Page
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Page
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
An occurrence of sensitive data in an Adobe Portable Document Format (PDF) file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#line_range ⇒ Types::Range
An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file.
-
#offset_range ⇒ Types::Range
An occurrence of sensitive data detected in a binary text file.
-
#page_number ⇒ Integer
The page number of the page that contains the sensitive data.
Instance Attribute Details
#line_range ⇒ Types::Range
An occurrence 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.
27362 27363 27364 27365 27366 27367 27368 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27362 class Page < Struct.new( :page_number, :line_range, :offset_range) SENSITIVE = [] include Aws::Structure end |
#offset_range ⇒ Types::Range
An occurrence of sensitive data detected in a binary text file.
27362 27363 27364 27365 27366 27367 27368 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27362 class Page < Struct.new( :page_number, :line_range, :offset_range) SENSITIVE = [] include Aws::Structure end |