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