Class: Aws::Rekognition::Types::ContentType

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

Overview

Contains information regarding the confidence and name of a detected content type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

The confidence level of the label given

Returns:

  • (Float)


751
752
753
754
755
756
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 751

class ContentType < Struct.new(
  :confidence,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the label

Returns:

  • (String)


751
752
753
754
755
756
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 751

class ContentType < Struct.new(
  :confidence,
  :name)
  SENSITIVE = []
  include Aws::Structure
end