aws-sdk-rekognition 1.61.0 → 1.62.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 441e21cc8ad9d5d238e82711c456a46c618122e7baed5bcf6f0f9527f499d3e1
4
- data.tar.gz: 3453666697aa7a7e1c4c7855443ec32a71ae0a2ded26aefb4552419cb8b76770
3
+ metadata.gz: '08ab88cc9e4bb863575692d757540a95b4eea2d766422125a07ec995b26bf88d'
4
+ data.tar.gz: 43dd30ddc5a1da96ebd36f84296a2c2696776104a6d455fe3426c8849e82b20b
5
5
  SHA512:
6
- metadata.gz: 5ac8aa0966583c7e89bb0277a643c065808b8a062d00427e45b9adc2adab8677794bdab24f468cd35b1f7359ee836799330d139747d304efbe947374e35e9be8
7
- data.tar.gz: e11e92eb02de0af658fe9cc28e648e973302b0f59c8b03e7387affa700b1de4ff0058e771d81be578d6191b3ae2ecb7a6bf9d273b72218573e8293f5a2edb3ee
6
+ metadata.gz: 709105ef00caa19bcddebe6b1dd26fbbe7c66f220fc413505b4884c60eb46484a9d59c4a005bb8193f00d5a6cddb94cc3d48bdfa186f0141faa1c1880329eb2f
7
+ data.tar.gz: 934d726a7a6dc6e35328eabf9a545ef7375e3f28290747f6eb8e8ee97a62b91b41f6c7bb115f3815cf6bd1a7fce97259681859bf9ebe186afd049d79ef44e9fa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2021-12-03)
5
+ ------------------
6
+
7
+ * Feature - This release added new KnownGender types for Celebrity Recognition.
8
+
4
9
  1.61.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.62.0
@@ -375,7 +375,7 @@ module Aws::Rekognition
375
375
  # In response, the operation returns an array of face matches ordered by
376
376
  # similarity score in descending order. For each face match, the
377
377
  # response provides a bounding box of the face, facial landmarks, pose
378
- # details (pitch, role, and yaw), quality (brightness and sharpness),
378
+ # details (pitch, roll, and yaw), quality (brightness and sharpness),
379
379
  # and confidence value (indicating the level of confidence that the
380
380
  # bounding box contains a face). The response also provides a similarity
381
381
  # score, which indicates how closely the faces match.
@@ -2224,9 +2224,8 @@ module Aws::Rekognition
2224
2224
  # information about a single word or line of text that was detected in
2225
2225
  # the image.
2226
2226
  #
2227
- # A word is one or more ISO basic latin script characters that are not
2228
- # separated by spaces. `DetectText` can detect up to 100 words in an
2229
- # image.
2227
+ # A word is one or more script characters that are not separated by
2228
+ # spaces. `DetectText` can detect up to 100 words in an image.
2230
2229
  #
2231
2230
  # A line is a string of equally spaced words. A line isn't necessarily
2232
2231
  # a complete sentence. For example, a driver's license number is
@@ -2397,7 +2396,7 @@ module Aws::Rekognition
2397
2396
  # resp.urls #=> Array
2398
2397
  # resp.urls[0] #=> String
2399
2398
  # resp.name #=> String
2400
- # resp.known_gender.type #=> String, one of "Male", "Female"
2399
+ # resp.known_gender.type #=> String, one of "Male", "Female", "Nonbinary", "Unlisted"
2401
2400
  #
2402
2401
  # @overload get_celebrity_info(params = {})
2403
2402
  # @param [Hash] params ({})
@@ -2559,7 +2558,7 @@ module Aws::Rekognition
2559
2558
  # resp.celebrities[0].celebrity.face.quality.brightness #=> Float
2560
2559
  # resp.celebrities[0].celebrity.face.quality.sharpness #=> Float
2561
2560
  # resp.celebrities[0].celebrity.face.confidence #=> Float
2562
- # resp.celebrities[0].celebrity.known_gender.type #=> String, one of "Male", "Female"
2561
+ # resp.celebrities[0].celebrity.known_gender.type #=> String, one of "Male", "Female", "Nonbinary", "Unlisted"
2563
2562
  #
2564
2563
  # @overload get_celebrity_recognition(params = {})
2565
2564
  # @param [Hash] params ({})
@@ -4411,7 +4410,7 @@ module Aws::Rekognition
4411
4410
  # resp.celebrity_faces[0].face.smile.value #=> Boolean
4412
4411
  # resp.celebrity_faces[0].face.smile.confidence #=> Float
4413
4412
  # resp.celebrity_faces[0].match_confidence #=> Float
4414
- # resp.celebrity_faces[0].known_gender.type #=> String, one of "Male", "Female"
4413
+ # resp.celebrity_faces[0].known_gender.type #=> String, one of "Male", "Female", "Nonbinary", "Unlisted"
4415
4414
  # resp.unrecognized_faces #=> Array
4416
4415
  # resp.unrecognized_faces[0].bounding_box.width #=> Float
4417
4416
  # resp.unrecognized_faces[0].bounding_box.height #=> Float
@@ -5705,7 +5704,7 @@ module Aws::Rekognition
5705
5704
  params: params,
5706
5705
  config: config)
5707
5706
  context[:gem_name] = 'aws-sdk-rekognition'
5708
- context[:gem_version] = '1.61.0'
5707
+ context[:gem_version] = '1.62.0'
5709
5708
  Seahorse::Client::Request.new(handlers, context)
5710
5709
  end
5711
5710
 
@@ -252,7 +252,8 @@ module Aws::Rekognition
252
252
  #
253
253
  # @!attribute [rw] known_gender
254
254
  # The known gender identity for the celebrity that matches the
255
- # provided ID.
255
+ # provided ID. The known gender identity can be Male, Female,
256
+ # Nonbinary, or Unlisted.
256
257
  # @return [Types::KnownGender]
257
258
  #
258
259
  class Celebrity < Struct.new(
@@ -3790,7 +3791,8 @@ module Aws::Rekognition
3790
3791
  end
3791
3792
 
3792
3793
  # The known gender identity for the celebrity that matches the provided
3793
- # ID.
3794
+ # ID. The known gender identity can be Male, Female, Nonbinary, or
3795
+ # Unlisted.
3794
3796
  #
3795
3797
  # @!attribute [rw] type
3796
3798
  # A string value of the KnownGender info about the Celebrity.
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-rekognition/customizations'
49
49
  # @!group service
50
50
  module Aws::Rekognition
51
51
 
52
- GEM_VERSION = '1.61.0'
52
+ GEM_VERSION = '1.62.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rekognition
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.61.0
4
+ version: 1.62.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2021-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core