Class: Aws::SecurityHub::Types::Page
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Page
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass Page data as a hash:
{
page_number: 1,
line_range: {
start: 1,
end: 1,
start_column: 1,
},
offset_range: {
start: 1,
end: 1,
start_column: 1,
},
}
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.
34323 34324 34325 34326 34327 34328 34329 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34323 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.
34323 34324 34325 34326 34327 34328 34329 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34323 class Page < Struct.new( :page_number, :line_range, :offset_range) SENSITIVE = [] include Aws::Structure end |
#page_number ⇒ Integer
The page number of the page that contains the sensitive data.
34323 34324 34325 34326 34327 34328 34329 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 34323 class Page < Struct.new( :page_number, :line_range, :offset_range) SENSITIVE = [] include Aws::Structure end |