Class: Aws::Comprehend::Types::DominantLanguage

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb

Overview

Returns the code for the dominant language in the input text and the level of confidence that Amazon Comprehend has in the accuracy of the detection.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#language_codeString

The RFC 5646 language code for the dominant language. For more information about RFC 5646, see Tags for Identifying Languages on the IETF Tools web site.

Returns:

  • (String)


3474
3475
3476
3477
3478
3479
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3474

class DominantLanguage < Struct.new(
  :language_code,
  :score)
  SENSITIVE = []
  include Aws::Structure
end

#scoreFloat

The level of confidence that Amazon Comprehend has in the accuracy of the detection.

Returns:

  • (Float)


3474
3475
3476
3477
3478
3479
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3474

class DominantLanguage < Struct.new(
  :language_code,
  :score)
  SENSITIVE = []
  include Aws::Structure
end