Class: Aws::SecurityHub::Types::SensitiveDataDetections
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::SensitiveDataDetections
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass SensitiveDataDetections data as a hash:
{
count: 1,
type: "NonEmptyString",
occurrences: {
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 list of detected instances of sensitive data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Integer
The total number of occurrences of sensitive data that were detected.
-
#occurrences ⇒ Types::Occurrences
Details about the sensitive data that was detected.
-
#type ⇒ String
The type of sensitive data that was detected.
Instance Attribute Details
#count ⇒ Integer
The total number of occurrences of sensitive data that were detected.
42096 42097 42098 42099 42100 42101 42102 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42096 class SensitiveDataDetections < Struct.new( :count, :type, :occurrences) SENSITIVE = [] include Aws::Structure end |
#occurrences ⇒ Types::Occurrences
Details about the sensitive data that was detected.
42096 42097 42098 42099 42100 42101 42102 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42096 class SensitiveDataDetections < Struct.new( :count, :type, :occurrences) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of sensitive data that was detected. For example, the type might indicate that the data is an email address.
42096 42097 42098 42099 42100 42101 42102 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 42096 class SensitiveDataDetections < Struct.new( :count, :type, :occurrences) SENSITIVE = [] include Aws::Structure end |