Class: Aws::Comprehend::Types::DetectKeyPhrasesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectKeyPhrasesResponse
- Defined in:
- gems/aws-sdk-comprehend/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.
1884 1885 1886 1887 1888 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 1884 class DetectKeyPhrasesResponse < Struct.new( :key_phrases) SENSITIVE = [] include Aws::Structure end |