Class: Aws::Comprehend::Types::DetectToxicContentResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectToxicContentResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#result_list ⇒ Array<Types::ToxicLabels>
Results of the content moderation analysis.
Instance Attribute Details
#result_list ⇒ Array<Types::ToxicLabels>
Results of the content moderation analysis. Each entry in the results list contains a list of toxic content types identified in the text, along with a confidence score for each content type. The results list also includes a toxicity score for each entry in the results list.
2703 2704 2705 2706 2707 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2703 class DetectToxicContentResponse < Struct.new( :result_list) SENSITIVE = [] include Aws::Structure end |