Class: Aws::Comprehend::Types::DetectPiiEntitiesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectPiiEntitiesResponse
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entities ⇒ Array<Types::PiiEntity>
A collection of PII entities identified in the input text.
Instance Attribute Details
#entities ⇒ Array<Types::PiiEntity>
A collection of PII entities identified in the input text. For each entity, the response provides the entity type, where the entity text begins and ends, and the level of confidence that Amazon Comprehend has in the detection.
2526 2527 2528 2529 2530 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2526 class DetectPiiEntitiesResponse < Struct.new( :entities) SENSITIVE = [] include Aws::Structure end |