aws-sdk-rekognition 1.29.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rekognition.rb +1 -1
- data/lib/aws-sdk-rekognition/client.rb +52 -43
- data/lib/aws-sdk-rekognition/types.rb +58 -37
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4e980f5c42acc16744b051ba44def2678013729
|
4
|
+
data.tar.gz: c070aded8fe45fa1155dd7d340c81b886525cb49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 899d7e48f8ad90d0c0e4a53d3e1c0cff7bf4ff39a4cbb7fb5c256bc54bd1d83b25ff467d76d9bc5b8b22fae6a4c3e6d73d322b33018864d301159b116c7638c6
|
7
|
+
data.tar.gz: 71def3b19bc92a41cc27792e46cc3f379c744e3b7e11770b72e4a87936f0f4a6c17486a129b37c99c5852f1b687a08f6a1677b74429b548ca358ec00b5b82e69
|
data/lib/aws-sdk-rekognition.rb
CHANGED
@@ -1173,11 +1173,10 @@ module Aws::Rekognition
|
|
1173
1173
|
req.send_request(options)
|
1174
1174
|
end
|
1175
1175
|
|
1176
|
-
# Detects
|
1177
|
-
#
|
1178
|
-
#
|
1179
|
-
#
|
1180
|
-
# content.
|
1176
|
+
# Detects unsafe content in a specified JPEG or PNG format image. Use
|
1177
|
+
# `DetectModerationLabels` to moderate images depending on your
|
1178
|
+
# requirements. For example, you might want to filter images that
|
1179
|
+
# contain nudity, but not images containing suggestive content.
|
1181
1180
|
#
|
1182
1181
|
# To filter images, use the labels returned by `DetectModerationLabels`
|
1183
1182
|
# to determine which types of content are appropriate.
|
@@ -1523,15 +1522,15 @@ module Aws::Rekognition
|
|
1523
1522
|
req.send_request(options)
|
1524
1523
|
end
|
1525
1524
|
|
1526
|
-
# Gets the content
|
1525
|
+
# Gets the unsafe content analysis results for a Amazon Rekognition
|
1527
1526
|
# Video analysis started by StartContentModeration.
|
1528
1527
|
#
|
1529
|
-
#
|
1530
|
-
#
|
1531
|
-
#
|
1532
|
-
#
|
1528
|
+
# Unsafe content analysis of a video is an asynchronous operation. You
|
1529
|
+
# start analysis by calling StartContentModeration which returns a job
|
1530
|
+
# identifier (`JobId`). When analysis finishes, Amazon Rekognition Video
|
1531
|
+
# publishes a completion status to the Amazon Simple Notification
|
1533
1532
|
# Service topic registered in the initial call to
|
1534
|
-
# `StartContentModeration`. To get the results of the content
|
1533
|
+
# `StartContentModeration`. To get the results of the unsafe content
|
1535
1534
|
# analysis, first check that the status value published to the Amazon
|
1536
1535
|
# SNS topic is `SUCCEEDED`. If so, call `GetContentModeration` and pass
|
1537
1536
|
# the job identifier (`JobId`) from the initial call to
|
@@ -1540,8 +1539,8 @@ module Aws::Rekognition
|
|
1540
1539
|
# For more information, see Working with Stored Videos in the Amazon
|
1541
1540
|
# Rekognition Devlopers Guide.
|
1542
1541
|
#
|
1543
|
-
# `GetContentModeration` returns detected content
|
1544
|
-
#
|
1542
|
+
# `GetContentModeration` returns detected unsafe content labels, and the
|
1543
|
+
# time they are detected, in an array, `ModerationLabels`, of
|
1545
1544
|
# ContentModerationDetection objects.
|
1546
1545
|
#
|
1547
1546
|
# By default, the moderated labels are returned sorted by time, in
|
@@ -1561,8 +1560,8 @@ module Aws::Rekognition
|
|
1561
1560
|
# Rekognition Developer Guide.
|
1562
1561
|
#
|
1563
1562
|
# @option params [required, String] :job_id
|
1564
|
-
# The identifier for the content
|
1565
|
-
#
|
1563
|
+
# The identifier for the unsafe content job. Use `JobId` to identify the
|
1564
|
+
# job in a subsequent call to `GetContentModeration`.
|
1566
1565
|
#
|
1567
1566
|
# @option params [Integer] :max_results
|
1568
1567
|
# Maximum number of results to return per paginated call. The largest
|
@@ -1574,7 +1573,7 @@ module Aws::Rekognition
|
|
1574
1573
|
# If the previous response was incomplete (because there is more data to
|
1575
1574
|
# retrieve), Amazon Rekognition returns a pagination token in the
|
1576
1575
|
# response. You can use this pagination token to retrieve the next set
|
1577
|
-
# of content
|
1576
|
+
# of unsafe content labels.
|
1578
1577
|
#
|
1579
1578
|
# @option params [String] :sort_by
|
1580
1579
|
# Sort to use for elements in the `ModerationLabelDetections` array. Use
|
@@ -2995,7 +2994,7 @@ module Aws::Rekognition
|
|
2995
2994
|
# @option params [Float] :face_match_threshold
|
2996
2995
|
# Optional value specifying the minimum confidence in the face match to
|
2997
2996
|
# return. For example, don't return any matches where confidence in
|
2998
|
-
# matches is less than 70%.
|
2997
|
+
# matches is less than 70%. The default value is 80%.
|
2999
2998
|
#
|
3000
2999
|
# @return [Types::SearchFacesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3001
3000
|
#
|
@@ -3150,7 +3149,7 @@ module Aws::Rekognition
|
|
3150
3149
|
# @option params [Float] :face_match_threshold
|
3151
3150
|
# (Optional) Specifies the minimum confidence in the face match to
|
3152
3151
|
# return. For example, don't return any matches where confidence in
|
3153
|
-
# matches is less than 70%.
|
3152
|
+
# matches is less than 70%. The default value is 80%.
|
3154
3153
|
#
|
3155
3154
|
# @return [Types::SearchFacesByImageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3156
3155
|
#
|
@@ -3279,8 +3278,10 @@ module Aws::Rekognition
|
|
3279
3278
|
# to.
|
3280
3279
|
#
|
3281
3280
|
# @option params [String] :job_tag
|
3282
|
-
#
|
3283
|
-
#
|
3281
|
+
# An identifier you specify that's returned in the completion
|
3282
|
+
# notification that's published to your Amazon Simple Notification
|
3283
|
+
# Service topic. For example, you can use `JobTag` to group related jobs
|
3284
|
+
# and identify them in the completion notification.
|
3284
3285
|
#
|
3285
3286
|
# @return [Types::StartCelebrityRecognitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3286
3287
|
#
|
@@ -3315,29 +3316,27 @@ module Aws::Rekognition
|
|
3315
3316
|
req.send_request(options)
|
3316
3317
|
end
|
3317
3318
|
|
3318
|
-
# Starts asynchronous detection of
|
3319
|
-
# in a stored video.
|
3319
|
+
# Starts asynchronous detection of unsafe content in a stored video.
|
3320
3320
|
#
|
3321
3321
|
# Amazon Rekognition Video can moderate content in a video stored in an
|
3322
3322
|
# Amazon S3 bucket. Use Video to specify the bucket name and the
|
3323
3323
|
# filename of the video. `StartContentModeration` returns a job
|
3324
3324
|
# identifier (`JobId`) which you use to get the results of the analysis.
|
3325
|
-
# When content
|
3325
|
+
# When unsafe content analysis is finished, Amazon Rekognition Video
|
3326
3326
|
# publishes a completion status to the Amazon Simple Notification
|
3327
3327
|
# Service topic that you specify in `NotificationChannel`.
|
3328
3328
|
#
|
3329
|
-
# To get the results of the content
|
3330
|
-
#
|
3331
|
-
#
|
3332
|
-
#
|
3333
|
-
# `StartContentModeration`.
|
3329
|
+
# To get the results of the unsafe content analysis, first check that
|
3330
|
+
# the status value published to the Amazon SNS topic is `SUCCEEDED`. If
|
3331
|
+
# so, call GetContentModeration and pass the job identifier (`JobId`)
|
3332
|
+
# from the initial call to `StartContentModeration`.
|
3334
3333
|
#
|
3335
3334
|
# For more information, see Detecting Unsafe Content in the Amazon
|
3336
3335
|
# Rekognition Developer Guide.
|
3337
3336
|
#
|
3338
3337
|
# @option params [required, Types::Video] :video
|
3339
|
-
# The video in which you want to
|
3340
|
-
# stored in an Amazon S3 bucket.
|
3338
|
+
# The video in which you want to detect unsafe content. The video must
|
3339
|
+
# be stored in an Amazon S3 bucket.
|
3341
3340
|
#
|
3342
3341
|
# @option params [Float] :min_confidence
|
3343
3342
|
# Specifies the minimum confidence that Amazon Rekognition must have in
|
@@ -3357,11 +3356,13 @@ module Aws::Rekognition
|
|
3357
3356
|
#
|
3358
3357
|
# @option params [Types::NotificationChannel] :notification_channel
|
3359
3358
|
# The Amazon SNS topic ARN that you want Amazon Rekognition Video to
|
3360
|
-
# publish the completion status of the content
|
3359
|
+
# publish the completion status of the unsafe content analysis to.
|
3361
3360
|
#
|
3362
3361
|
# @option params [String] :job_tag
|
3363
|
-
#
|
3364
|
-
#
|
3362
|
+
# An identifier you specify that's returned in the completion
|
3363
|
+
# notification that's published to your Amazon Simple Notification
|
3364
|
+
# Service topic. For example, you can use `JobTag` to group related jobs
|
3365
|
+
# and identify them in the completion notification.
|
3365
3366
|
#
|
3366
3367
|
# @return [Types::StartContentModerationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3367
3368
|
#
|
@@ -3438,8 +3439,10 @@ module Aws::Rekognition
|
|
3438
3439
|
# `ALL` - All facial attributes are returned.
|
3439
3440
|
#
|
3440
3441
|
# @option params [String] :job_tag
|
3441
|
-
#
|
3442
|
-
#
|
3442
|
+
# An identifier you specify that's returned in the completion
|
3443
|
+
# notification that's published to your Amazon Simple Notification
|
3444
|
+
# Service topic. For example, you can use `JobTag` to group related jobs
|
3445
|
+
# and identify them in the completion notification.
|
3443
3446
|
#
|
3444
3447
|
# @return [Types::StartFaceDetectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3445
3448
|
#
|
@@ -3503,7 +3506,7 @@ module Aws::Rekognition
|
|
3503
3506
|
# @option params [Float] :face_match_threshold
|
3504
3507
|
# The minimum confidence in the person match to return. For example,
|
3505
3508
|
# don't return any matches where confidence in matches is less than
|
3506
|
-
# 70%.
|
3509
|
+
# 70%. The default value is 80%.
|
3507
3510
|
#
|
3508
3511
|
# @option params [required, String] :collection_id
|
3509
3512
|
# ID of the collection that contains the faces you want to search for.
|
@@ -3513,8 +3516,10 @@ module Aws::Rekognition
|
|
3513
3516
|
# Video to publish the completion status of the search.
|
3514
3517
|
#
|
3515
3518
|
# @option params [String] :job_tag
|
3516
|
-
#
|
3517
|
-
#
|
3519
|
+
# An identifier you specify that's returned in the completion
|
3520
|
+
# notification that's published to your Amazon Simple Notification
|
3521
|
+
# Service topic. For example, you can use `JobTag` to group related jobs
|
3522
|
+
# and identify them in the completion notification.
|
3518
3523
|
#
|
3519
3524
|
# @return [Types::StartFaceSearchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3520
3525
|
#
|
@@ -3597,8 +3602,10 @@ module Aws::Rekognition
|
|
3597
3602
|
# the completion status of the label detection operation to.
|
3598
3603
|
#
|
3599
3604
|
# @option params [String] :job_tag
|
3600
|
-
#
|
3601
|
-
#
|
3605
|
+
# An identifier you specify that's returned in the completion
|
3606
|
+
# notification that's published to your Amazon Simple Notification
|
3607
|
+
# Service topic. For example, you can use `JobTag` to group related jobs
|
3608
|
+
# and identify them in the completion notification.
|
3602
3609
|
#
|
3603
3610
|
# @return [Types::StartLabelDetectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3604
3611
|
#
|
@@ -3665,8 +3672,10 @@ module Aws::Rekognition
|
|
3665
3672
|
# the completion status of the people detection operation to.
|
3666
3673
|
#
|
3667
3674
|
# @option params [String] :job_tag
|
3668
|
-
#
|
3669
|
-
#
|
3675
|
+
# An identifier you specify that's returned in the completion
|
3676
|
+
# notification that's published to your Amazon Simple Notification
|
3677
|
+
# Service topic. For example, you can use `JobTag` to group related jobs
|
3678
|
+
# and identify them in the completion notification.
|
3670
3679
|
#
|
3671
3680
|
# @return [Types::StartPersonTrackingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3672
3681
|
#
|
@@ -3758,7 +3767,7 @@ module Aws::Rekognition
|
|
3758
3767
|
params: params,
|
3759
3768
|
config: config)
|
3760
3769
|
context[:gem_name] = 'aws-sdk-rekognition'
|
3761
|
-
context[:gem_version] = '1.
|
3770
|
+
context[:gem_version] = '1.30.0'
|
3762
3771
|
Seahorse::Client::Request.new(handlers, context)
|
3763
3772
|
end
|
3764
3773
|
|
@@ -380,15 +380,15 @@ module Aws::Rekognition
|
|
380
380
|
include Aws::Structure
|
381
381
|
end
|
382
382
|
|
383
|
-
# Information about
|
383
|
+
# Information about an unsafe content label detection in a stored video.
|
384
384
|
#
|
385
385
|
# @!attribute [rw] timestamp
|
386
386
|
# Time, in milliseconds from the beginning of the video, that the
|
387
|
-
#
|
387
|
+
# unsafe content label was detected.
|
388
388
|
# @return [Integer]
|
389
389
|
#
|
390
390
|
# @!attribute [rw] moderation_label
|
391
|
-
# The
|
391
|
+
# The unsafe content label detected by in the stored video.
|
392
392
|
# @return [Types::ModerationLabel]
|
393
393
|
#
|
394
394
|
class ContentModerationDetection < Struct.new(
|
@@ -899,7 +899,7 @@ module Aws::Rekognition
|
|
899
899
|
end
|
900
900
|
|
901
901
|
# @!attribute [rw] moderation_labels
|
902
|
-
# Array of detected Moderation labels and the time, in
|
902
|
+
# Array of detected Moderation labels and the time, in milliseconds
|
903
903
|
# from the start of the video, they were detected.
|
904
904
|
# @return [Array<Types::ModerationLabel>]
|
905
905
|
#
|
@@ -953,8 +953,12 @@ module Aws::Rekognition
|
|
953
953
|
include Aws::Structure
|
954
954
|
end
|
955
955
|
|
956
|
-
# The emotions
|
957
|
-
# determination.
|
956
|
+
# The emotions that appear to be expressed on the face, and the
|
957
|
+
# confidence level in the determination. The API is only making a
|
958
|
+
# determination of the physical appearance of a person's face. It is
|
959
|
+
# not a determination of the person’s internal emotional state and
|
960
|
+
# should not be used in such a way. For example, a person pretending to
|
961
|
+
# have a sad face might not be sad emotionally.
|
958
962
|
#
|
959
963
|
# @!attribute [rw] type
|
960
964
|
# Type of emotion detected.
|
@@ -1113,8 +1117,12 @@ module Aws::Rekognition
|
|
1113
1117
|
# @return [Types::MouthOpen]
|
1114
1118
|
#
|
1115
1119
|
# @!attribute [rw] emotions
|
1116
|
-
# The emotions
|
1117
|
-
# determination.
|
1120
|
+
# The emotions that appear to be expressed on the face, and the
|
1121
|
+
# confidence level in the determination. The API is only making a
|
1122
|
+
# determination of the physical appearance of a person's face. It is
|
1123
|
+
# not a determination of the person’s internal emotional state and
|
1124
|
+
# should not be used in such a way. For example, a person pretending
|
1125
|
+
# to have a sad face might not be sad emotionally.
|
1118
1126
|
# @return [Array<Types::Emotion>]
|
1119
1127
|
#
|
1120
1128
|
# @!attribute [rw] landmarks
|
@@ -1397,8 +1405,8 @@ module Aws::Rekognition
|
|
1397
1405
|
# }
|
1398
1406
|
#
|
1399
1407
|
# @!attribute [rw] job_id
|
1400
|
-
# The identifier for the content
|
1401
|
-
#
|
1408
|
+
# The identifier for the unsafe content job. Use `JobId` to identify
|
1409
|
+
# the job in a subsequent call to `GetContentModeration`.
|
1402
1410
|
# @return [String]
|
1403
1411
|
#
|
1404
1412
|
# @!attribute [rw] max_results
|
@@ -1412,7 +1420,7 @@ module Aws::Rekognition
|
|
1412
1420
|
# If the previous response was incomplete (because there is more data
|
1413
1421
|
# to retrieve), Amazon Rekognition returns a pagination token in the
|
1414
1422
|
# response. You can use this pagination token to retrieve the next set
|
1415
|
-
# of content
|
1423
|
+
# of unsafe content labels.
|
1416
1424
|
# @return [String]
|
1417
1425
|
#
|
1418
1426
|
# @!attribute [rw] sort_by
|
@@ -1432,7 +1440,7 @@ module Aws::Rekognition
|
|
1432
1440
|
end
|
1433
1441
|
|
1434
1442
|
# @!attribute [rw] job_status
|
1435
|
-
# The current status of the content
|
1443
|
+
# The current status of the unsafe content analysis job.
|
1436
1444
|
# @return [String]
|
1437
1445
|
#
|
1438
1446
|
# @!attribute [rw] status_message
|
@@ -1447,13 +1455,14 @@ module Aws::Rekognition
|
|
1447
1455
|
# @return [Types::VideoMetadata]
|
1448
1456
|
#
|
1449
1457
|
# @!attribute [rw] moderation_labels
|
1450
|
-
# The detected
|
1458
|
+
# The detected unsafe content labels and the time(s) they were
|
1459
|
+
# detected.
|
1451
1460
|
# @return [Array<Types::ContentModerationDetection>]
|
1452
1461
|
#
|
1453
1462
|
# @!attribute [rw] next_token
|
1454
1463
|
# If the response is truncated, Amazon Rekognition Video returns this
|
1455
1464
|
# token that you can use in the subsequent request to retrieve the
|
1456
|
-
# next set of
|
1465
|
+
# next set of unsafe content labels.
|
1457
1466
|
# @return [String]
|
1458
1467
|
#
|
1459
1468
|
# @!attribute [rw] moderation_model_version
|
@@ -2302,8 +2311,8 @@ module Aws::Rekognition
|
|
2302
2311
|
include Aws::Structure
|
2303
2312
|
end
|
2304
2313
|
|
2305
|
-
# Provides information about a single type of
|
2306
|
-
#
|
2314
|
+
# Provides information about a single type of unsafe content found in an
|
2315
|
+
# image or video. Each type of moderated content has a label within a
|
2307
2316
|
# hierarchical taxonomy. For more information, see Detecting Unsafe
|
2308
2317
|
# Content in the Amazon Rekognition Developer Guide.
|
2309
2318
|
#
|
@@ -2317,7 +2326,7 @@ module Aws::Rekognition
|
|
2317
2326
|
# @return [Float]
|
2318
2327
|
#
|
2319
2328
|
# @!attribute [rw] name
|
2320
|
-
# The label name for the type of content detected in the image.
|
2329
|
+
# The label name for the type of unsafe content detected in the image.
|
2321
2330
|
# @return [String]
|
2322
2331
|
#
|
2323
2332
|
# @!attribute [rw] parent_name
|
@@ -2669,7 +2678,7 @@ module Aws::Rekognition
|
|
2669
2678
|
# @!attribute [rw] face_match_threshold
|
2670
2679
|
# (Optional) Specifies the minimum confidence in the face match to
|
2671
2680
|
# return. For example, don't return any matches where confidence in
|
2672
|
-
# matches is less than 70%.
|
2681
|
+
# matches is less than 70%. The default value is 80%.
|
2673
2682
|
# @return [Float]
|
2674
2683
|
#
|
2675
2684
|
class SearchFacesByImageRequest < Struct.new(
|
@@ -2734,7 +2743,7 @@ module Aws::Rekognition
|
|
2734
2743
|
# @!attribute [rw] face_match_threshold
|
2735
2744
|
# Optional value specifying the minimum confidence in the face match
|
2736
2745
|
# to return. For example, don't return any matches where confidence
|
2737
|
-
# in matches is less than 70%.
|
2746
|
+
# in matches is less than 70%. The default value is 80%.
|
2738
2747
|
# @return [Float]
|
2739
2748
|
#
|
2740
2749
|
class SearchFacesRequest < Struct.new(
|
@@ -2821,8 +2830,10 @@ module Aws::Rekognition
|
|
2821
2830
|
# @return [Types::NotificationChannel]
|
2822
2831
|
#
|
2823
2832
|
# @!attribute [rw] job_tag
|
2824
|
-
#
|
2825
|
-
#
|
2833
|
+
# An identifier you specify that's returned in the completion
|
2834
|
+
# notification that's published to your Amazon Simple Notification
|
2835
|
+
# Service topic. For example, you can use `JobTag` to group related
|
2836
|
+
# jobs and identify them in the completion notification.
|
2826
2837
|
# @return [String]
|
2827
2838
|
#
|
2828
2839
|
class StartCelebrityRecognitionRequest < Struct.new(
|
@@ -2865,8 +2876,8 @@ module Aws::Rekognition
|
|
2865
2876
|
# }
|
2866
2877
|
#
|
2867
2878
|
# @!attribute [rw] video
|
2868
|
-
# The video in which you want to
|
2869
|
-
# stored in an Amazon S3 bucket.
|
2879
|
+
# The video in which you want to detect unsafe content. The video must
|
2880
|
+
# be stored in an Amazon S3 bucket.
|
2870
2881
|
# @return [Types::Video]
|
2871
2882
|
#
|
2872
2883
|
# @!attribute [rw] min_confidence
|
@@ -2889,12 +2900,14 @@ module Aws::Rekognition
|
|
2889
2900
|
#
|
2890
2901
|
# @!attribute [rw] notification_channel
|
2891
2902
|
# The Amazon SNS topic ARN that you want Amazon Rekognition Video to
|
2892
|
-
# publish the completion status of the content
|
2903
|
+
# publish the completion status of the unsafe content analysis to.
|
2893
2904
|
# @return [Types::NotificationChannel]
|
2894
2905
|
#
|
2895
2906
|
# @!attribute [rw] job_tag
|
2896
|
-
#
|
2897
|
-
#
|
2907
|
+
# An identifier you specify that's returned in the completion
|
2908
|
+
# notification that's published to your Amazon Simple Notification
|
2909
|
+
# Service topic. For example, you can use `JobTag` to group related
|
2910
|
+
# jobs and identify them in the completion notification.
|
2898
2911
|
# @return [String]
|
2899
2912
|
#
|
2900
2913
|
class StartContentModerationRequest < Struct.new(
|
@@ -2907,8 +2920,8 @@ module Aws::Rekognition
|
|
2907
2920
|
end
|
2908
2921
|
|
2909
2922
|
# @!attribute [rw] job_id
|
2910
|
-
# The identifier for the content
|
2911
|
-
#
|
2923
|
+
# The identifier for the unsafe content analysis job. Use `JobId` to
|
2924
|
+
# identify the job in a subsequent call to `GetContentModeration`.
|
2912
2925
|
# @return [String]
|
2913
2926
|
#
|
2914
2927
|
class StartContentModerationResponse < Struct.new(
|
@@ -2964,8 +2977,10 @@ module Aws::Rekognition
|
|
2964
2977
|
# @return [String]
|
2965
2978
|
#
|
2966
2979
|
# @!attribute [rw] job_tag
|
2967
|
-
#
|
2968
|
-
#
|
2980
|
+
# An identifier you specify that's returned in the completion
|
2981
|
+
# notification that's published to your Amazon Simple Notification
|
2982
|
+
# Service topic. For example, you can use `JobTag` to group related
|
2983
|
+
# jobs and identify them in the completion notification.
|
2969
2984
|
# @return [String]
|
2970
2985
|
#
|
2971
2986
|
class StartFaceDetectionRequest < Struct.new(
|
@@ -3023,7 +3038,7 @@ module Aws::Rekognition
|
|
3023
3038
|
# @!attribute [rw] face_match_threshold
|
3024
3039
|
# The minimum confidence in the person match to return. For example,
|
3025
3040
|
# don't return any matches where confidence in matches is less than
|
3026
|
-
# 70%.
|
3041
|
+
# 70%. The default value is 80%.
|
3027
3042
|
# @return [Float]
|
3028
3043
|
#
|
3029
3044
|
# @!attribute [rw] collection_id
|
@@ -3036,8 +3051,10 @@ module Aws::Rekognition
|
|
3036
3051
|
# @return [Types::NotificationChannel]
|
3037
3052
|
#
|
3038
3053
|
# @!attribute [rw] job_tag
|
3039
|
-
#
|
3040
|
-
#
|
3054
|
+
# An identifier you specify that's returned in the completion
|
3055
|
+
# notification that's published to your Amazon Simple Notification
|
3056
|
+
# Service topic. For example, you can use `JobTag` to group related
|
3057
|
+
# jobs and identify them in the completion notification.
|
3041
3058
|
# @return [String]
|
3042
3059
|
#
|
3043
3060
|
class StartFaceSearchRequest < Struct.new(
|
@@ -3110,8 +3127,10 @@ module Aws::Rekognition
|
|
3110
3127
|
# @return [Types::NotificationChannel]
|
3111
3128
|
#
|
3112
3129
|
# @!attribute [rw] job_tag
|
3113
|
-
#
|
3114
|
-
#
|
3130
|
+
# An identifier you specify that's returned in the completion
|
3131
|
+
# notification that's published to your Amazon Simple Notification
|
3132
|
+
# Service topic. For example, you can use `JobTag` to group related
|
3133
|
+
# jobs and identify them in the completion notification.
|
3115
3134
|
# @return [String]
|
3116
3135
|
#
|
3117
3136
|
class StartLabelDetectionRequest < Struct.new(
|
@@ -3170,8 +3189,10 @@ module Aws::Rekognition
|
|
3170
3189
|
# @return [Types::NotificationChannel]
|
3171
3190
|
#
|
3172
3191
|
# @!attribute [rw] job_tag
|
3173
|
-
#
|
3174
|
-
#
|
3192
|
+
# An identifier you specify that's returned in the completion
|
3193
|
+
# notification that's published to your Amazon Simple Notification
|
3194
|
+
# Service topic. For example, you can use `JobTag` to group related
|
3195
|
+
# jobs and identify them in the completion notification.
|
3175
3196
|
# @return [String]
|
3176
3197
|
#
|
3177
3198
|
class StartPersonTrackingRequest < Struct.new(
|
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.
|
4
|
+
version: 1.30.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: 2019-08-
|
11
|
+
date: 2019-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|