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.
2505 2506 2507 2508 2509 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2505 class DetectKeyPhrasesResponse < Struct.new( :key_phrases) SENSITIVE = [] include Aws::Structure end |