Class: Aws::SecurityHub::Types::CustomDataIdentifiersResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::CustomDataIdentifiersResult
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass CustomDataIdentifiersResult data as a hash:
{
detections: [
{
count: 1,
arn: "NonEmptyString",
name: "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",
},
],
},
},
],
total_count: 1,
}
Contains an instance of sensitive data that was detected by a customer-defined identifier.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#detections ⇒ Array<Types::CustomDataIdentifiersDetections>
The list of detected instances of sensitive data.
-
#total_count ⇒ Integer
The total number of occurrences of sensitive data.
Instance Attribute Details
#detections ⇒ Array<Types::CustomDataIdentifiersDetections>
The list of detected instances of sensitive data.
30562 30563 30564 30565 30566 30567 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 30562 class CustomDataIdentifiersResult < Struct.new( :detections, :total_count) SENSITIVE = [] include Aws::Structure end |
#total_count ⇒ Integer
The total number of occurrences of sensitive data.
30562 30563 30564 30565 30566 30567 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 30562 class CustomDataIdentifiersResult < Struct.new( :detections, :total_count) SENSITIVE = [] include Aws::Structure end |