@aws-sdk/client-rekognition 3.300.0 → 3.301.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.
Files changed (64) hide show
  1. package/dist-types/commands/CompareFacesCommand.d.ts +3 -3
  2. package/dist-types/commands/CopyProjectVersionCommand.d.ts +3 -3
  3. package/dist-types/commands/CreateCollectionCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateDatasetCommand.d.ts +4 -4
  5. package/dist-types/commands/CreateProjectCommand.d.ts +1 -1
  6. package/dist-types/commands/CreateProjectVersionCommand.d.ts +9 -9
  7. package/dist-types/commands/CreateStreamProcessorCommand.d.ts +18 -18
  8. package/dist-types/commands/DeleteCollectionCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteFacesCommand.d.ts +2 -2
  11. package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteProjectPolicyCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteProjectVersionCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteStreamProcessorCommand.d.ts +1 -1
  15. package/dist-types/commands/DescribeCollectionCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeProjectVersionsCommand.d.ts +2 -2
  18. package/dist-types/commands/DescribeProjectsCommand.d.ts +2 -2
  19. package/dist-types/commands/DescribeStreamProcessorCommand.d.ts +1 -1
  20. package/dist-types/commands/DetectCustomLabelsCommand.d.ts +3 -3
  21. package/dist-types/commands/DetectFacesCommand.d.ts +4 -4
  22. package/dist-types/commands/DetectLabelsCommand.d.ts +8 -8
  23. package/dist-types/commands/DetectModerationLabelsCommand.d.ts +6 -6
  24. package/dist-types/commands/DetectProtectiveEquipmentCommand.d.ts +5 -5
  25. package/dist-types/commands/DetectTextCommand.d.ts +10 -10
  26. package/dist-types/commands/DistributeDatasetEntriesCommand.d.ts +3 -3
  27. package/dist-types/commands/GetCelebrityInfoCommand.d.ts +1 -1
  28. package/dist-types/commands/GetCelebrityRecognitionCommand.d.ts +1 -1
  29. package/dist-types/commands/GetContentModerationCommand.d.ts +1 -1
  30. package/dist-types/commands/GetFaceDetectionCommand.d.ts +1 -1
  31. package/dist-types/commands/GetFaceSearchCommand.d.ts +1 -1
  32. package/dist-types/commands/GetLabelDetectionCommand.d.ts +1 -1
  33. package/dist-types/commands/GetPersonTrackingCommand.d.ts +1 -1
  34. package/dist-types/commands/GetSegmentDetectionCommand.d.ts +1 -1
  35. package/dist-types/commands/GetTextDetectionCommand.d.ts +1 -1
  36. package/dist-types/commands/IndexFacesCommand.d.ts +4 -4
  37. package/dist-types/commands/ListCollectionsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListDatasetEntriesCommand.d.ts +2 -2
  39. package/dist-types/commands/ListDatasetLabelsCommand.d.ts +1 -1
  40. package/dist-types/commands/ListFacesCommand.d.ts +1 -1
  41. package/dist-types/commands/ListProjectPoliciesCommand.d.ts +1 -1
  42. package/dist-types/commands/ListStreamProcessorsCommand.d.ts +1 -1
  43. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  44. package/dist-types/commands/PutProjectPolicyCommand.d.ts +1 -1
  45. package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +3 -3
  46. package/dist-types/commands/SearchFacesByImageCommand.d.ts +3 -3
  47. package/dist-types/commands/SearchFacesCommand.d.ts +1 -1
  48. package/dist-types/commands/StartCelebrityRecognitionCommand.d.ts +4 -4
  49. package/dist-types/commands/StartContentModerationCommand.d.ts +4 -4
  50. package/dist-types/commands/StartFaceDetectionCommand.d.ts +4 -4
  51. package/dist-types/commands/StartFaceSearchCommand.d.ts +4 -4
  52. package/dist-types/commands/StartLabelDetectionCommand.d.ts +8 -8
  53. package/dist-types/commands/StartPersonTrackingCommand.d.ts +4 -4
  54. package/dist-types/commands/StartProjectVersionCommand.d.ts +1 -1
  55. package/dist-types/commands/StartSegmentDetectionCommand.d.ts +9 -9
  56. package/dist-types/commands/StartStreamProcessorCommand.d.ts +4 -4
  57. package/dist-types/commands/StartTextDetectionCommand.d.ts +11 -11
  58. package/dist-types/commands/StopProjectVersionCommand.d.ts +1 -1
  59. package/dist-types/commands/StopStreamProcessorCommand.d.ts +1 -1
  60. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  61. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  62. package/dist-types/commands/UpdateDatasetEntriesCommand.d.ts +2 -2
  63. package/dist-types/commands/UpdateStreamProcessorCommand.d.ts +11 -11
  64. package/package.json +3 -3
@@ -76,10 +76,10 @@ export interface CompareFacesCommandOutput extends CompareFacesResponse, __Metad
76
76
  * import { RekognitionClient, CompareFacesCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
77
77
  * // const { RekognitionClient, CompareFacesCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
78
78
  * const client = new RekognitionClient(config);
79
- * const input = {
80
- * SourceImage: {
79
+ * const input = { // CompareFacesRequest
80
+ * SourceImage: { // Image
81
81
  * Bytes: "BLOB_VALUE",
82
- * S3Object: {
82
+ * S3Object: { // S3Object
83
83
  * Bucket: "STRING_VALUE",
84
84
  * Name: "STRING_VALUE",
85
85
  * Version: "STRING_VALUE",
@@ -44,16 +44,16 @@ export interface CopyProjectVersionCommandOutput extends CopyProjectVersionRespo
44
44
  * import { RekognitionClient, CopyProjectVersionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
45
45
  * // const { RekognitionClient, CopyProjectVersionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
46
46
  * const client = new RekognitionClient(config);
47
- * const input = {
47
+ * const input = { // CopyProjectVersionRequest
48
48
  * SourceProjectArn: "STRING_VALUE", // required
49
49
  * SourceProjectVersionArn: "STRING_VALUE", // required
50
50
  * DestinationProjectArn: "STRING_VALUE", // required
51
51
  * VersionName: "STRING_VALUE", // required
52
- * OutputConfig: {
52
+ * OutputConfig: { // OutputConfig
53
53
  * S3Bucket: "STRING_VALUE",
54
54
  * S3KeyPrefix: "STRING_VALUE",
55
55
  * },
56
- * Tags: {
56
+ * Tags: { // TagMap
57
57
  * "<keys>": "STRING_VALUE",
58
58
  * },
59
59
  * KmsKeyId: "STRING_VALUE",
@@ -40,9 +40,9 @@ export interface CreateCollectionCommandOutput extends CreateCollectionResponse,
40
40
  * import { RekognitionClient, CreateCollectionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
41
41
  * // const { RekognitionClient, CreateCollectionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
42
42
  * const client = new RekognitionClient(config);
43
- * const input = {
43
+ * const input = { // CreateCollectionRequest
44
44
  * CollectionId: "STRING_VALUE", // required
45
- * Tags: {
45
+ * Tags: { // TagMap
46
46
  * "<keys>": "STRING_VALUE",
47
47
  * },
48
48
  * };
@@ -44,10 +44,10 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
44
44
  * import { RekognitionClient, CreateDatasetCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
45
45
  * // const { RekognitionClient, CreateDatasetCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
46
46
  * const client = new RekognitionClient(config);
47
- * const input = {
48
- * DatasetSource: {
49
- * GroundTruthManifest: {
50
- * S3Object: {
47
+ * const input = { // CreateDatasetRequest
48
+ * DatasetSource: { // DatasetSource
49
+ * GroundTruthManifest: { // GroundTruthManifest
50
+ * S3Object: { // S3Object
51
51
  * Bucket: "STRING_VALUE",
52
52
  * Name: "STRING_VALUE",
53
53
  * Version: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
28
28
  * import { RekognitionClient, CreateProjectCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
29
29
  * // const { RekognitionClient, CreateProjectCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
30
30
  * const client = new RekognitionClient(config);
31
- * const input = {
31
+ * const input = { // CreateProjectRequest
32
32
  * ProjectName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new CreateProjectCommand(input);
@@ -55,18 +55,18 @@ export interface CreateProjectVersionCommandOutput extends CreateProjectVersionR
55
55
  * import { RekognitionClient, CreateProjectVersionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
56
56
  * // const { RekognitionClient, CreateProjectVersionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
57
57
  * const client = new RekognitionClient(config);
58
- * const input = {
58
+ * const input = { // CreateProjectVersionRequest
59
59
  * ProjectArn: "STRING_VALUE", // required
60
60
  * VersionName: "STRING_VALUE", // required
61
- * OutputConfig: {
61
+ * OutputConfig: { // OutputConfig
62
62
  * S3Bucket: "STRING_VALUE",
63
63
  * S3KeyPrefix: "STRING_VALUE",
64
64
  * },
65
- * TrainingData: {
66
- * Assets: [
67
- * {
68
- * GroundTruthManifest: {
69
- * S3Object: {
65
+ * TrainingData: { // TrainingData
66
+ * Assets: [ // Assets
67
+ * { // Asset
68
+ * GroundTruthManifest: { // GroundTruthManifest
69
+ * S3Object: { // S3Object
70
70
  * Bucket: "STRING_VALUE",
71
71
  * Name: "STRING_VALUE",
72
72
  * Version: "STRING_VALUE",
@@ -75,7 +75,7 @@ export interface CreateProjectVersionCommandOutput extends CreateProjectVersionR
75
75
  * },
76
76
  * ],
77
77
  * },
78
- * TestingData: {
78
+ * TestingData: { // TestingData
79
79
  * Assets: [
80
80
  * {
81
81
  * GroundTruthManifest: {
@@ -89,7 +89,7 @@ export interface CreateProjectVersionCommandOutput extends CreateProjectVersionR
89
89
  * ],
90
90
  * AutoCreate: true || false,
91
91
  * },
92
- * Tags: {
92
+ * Tags: { // TagMap
93
93
  * "<keys>": "STRING_VALUE",
94
94
  * },
95
95
  * KmsKeyId: "STRING_VALUE",
@@ -46,59 +46,59 @@ export interface CreateStreamProcessorCommandOutput extends CreateStreamProcesso
46
46
  * import { RekognitionClient, CreateStreamProcessorCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
47
47
  * // const { RekognitionClient, CreateStreamProcessorCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
48
48
  * const client = new RekognitionClient(config);
49
- * const input = {
50
- * Input: {
51
- * KinesisVideoStream: {
49
+ * const input = { // CreateStreamProcessorRequest
50
+ * Input: { // StreamProcessorInput
51
+ * KinesisVideoStream: { // KinesisVideoStream
52
52
  * Arn: "STRING_VALUE",
53
53
  * },
54
54
  * },
55
- * Output: {
56
- * KinesisDataStream: {
55
+ * Output: { // StreamProcessorOutput
56
+ * KinesisDataStream: { // KinesisDataStream
57
57
  * Arn: "STRING_VALUE",
58
58
  * },
59
- * S3Destination: {
59
+ * S3Destination: { // S3Destination
60
60
  * Bucket: "STRING_VALUE",
61
61
  * KeyPrefix: "STRING_VALUE",
62
62
  * },
63
63
  * },
64
64
  * Name: "STRING_VALUE", // required
65
- * Settings: {
66
- * FaceSearch: {
65
+ * Settings: { // StreamProcessorSettings
66
+ * FaceSearch: { // FaceSearchSettings
67
67
  * CollectionId: "STRING_VALUE",
68
68
  * FaceMatchThreshold: Number("float"),
69
69
  * },
70
- * ConnectedHome: {
71
- * Labels: [ // required
70
+ * ConnectedHome: { // ConnectedHomeSettings
71
+ * Labels: [ // ConnectedHomeLabels // required
72
72
  * "STRING_VALUE",
73
73
  * ],
74
74
  * MinConfidence: Number("float"),
75
75
  * },
76
76
  * },
77
77
  * RoleArn: "STRING_VALUE", // required
78
- * Tags: {
78
+ * Tags: { // TagMap
79
79
  * "<keys>": "STRING_VALUE",
80
80
  * },
81
- * NotificationChannel: {
81
+ * NotificationChannel: { // StreamProcessorNotificationChannel
82
82
  * SNSTopicArn: "STRING_VALUE", // required
83
83
  * },
84
84
  * KmsKeyId: "STRING_VALUE",
85
- * RegionsOfInterest: [
86
- * {
87
- * BoundingBox: {
85
+ * RegionsOfInterest: [ // RegionsOfInterest
86
+ * { // RegionOfInterest
87
+ * BoundingBox: { // BoundingBox
88
88
  * Width: Number("float"),
89
89
  * Height: Number("float"),
90
90
  * Left: Number("float"),
91
91
  * Top: Number("float"),
92
92
  * },
93
- * Polygon: [
94
- * {
93
+ * Polygon: [ // Polygon
94
+ * { // Point
95
95
  * X: Number("float"),
96
96
  * Y: Number("float"),
97
97
  * },
98
98
  * ],
99
99
  * },
100
100
  * ],
101
- * DataSharingPreference: {
101
+ * DataSharingPreference: { // StreamProcessorDataSharingPreference
102
102
  * OptIn: true || false, // required
103
103
  * },
104
104
  * };
@@ -30,7 +30,7 @@ export interface DeleteCollectionCommandOutput extends DeleteCollectionResponse,
30
30
  * import { RekognitionClient, DeleteCollectionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
31
31
  * // const { RekognitionClient, DeleteCollectionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
32
32
  * const client = new RekognitionClient(config);
33
- * const input = {
33
+ * const input = { // DeleteCollectionRequest
34
34
  * CollectionId: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DeleteCollectionCommand(input);
@@ -35,7 +35,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
35
35
  * import { RekognitionClient, DeleteDatasetCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
36
36
  * // const { RekognitionClient, DeleteDatasetCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
37
37
  * const client = new RekognitionClient(config);
38
- * const input = {
38
+ * const input = { // DeleteDatasetRequest
39
39
  * DatasetArn: "STRING_VALUE", // required
40
40
  * };
41
41
  * const command = new DeleteDatasetCommand(input);
@@ -29,9 +29,9 @@ export interface DeleteFacesCommandOutput extends DeleteFacesResponse, __Metadat
29
29
  * import { RekognitionClient, DeleteFacesCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
30
30
  * // const { RekognitionClient, DeleteFacesCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
31
31
  * const client = new RekognitionClient(config);
32
- * const input = {
32
+ * const input = { // DeleteFacesRequest
33
33
  * CollectionId: "STRING_VALUE", // required
34
- * FaceIds: [ // required
34
+ * FaceIds: [ // FaceIdList // required
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * };
@@ -34,7 +34,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met
34
34
  * import { RekognitionClient, DeleteProjectCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
35
35
  * // const { RekognitionClient, DeleteProjectCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
36
36
  * const client = new RekognitionClient(config);
37
- * const input = {
37
+ * const input = { // DeleteProjectRequest
38
38
  * ProjectArn: "STRING_VALUE", // required
39
39
  * };
40
40
  * const command = new DeleteProjectCommand(input);
@@ -27,7 +27,7 @@ export interface DeleteProjectPolicyCommandOutput extends DeleteProjectPolicyRes
27
27
  * import { RekognitionClient, DeleteProjectPolicyCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
28
28
  * // const { RekognitionClient, DeleteProjectPolicyCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
29
29
  * const client = new RekognitionClient(config);
30
- * const input = {
30
+ * const input = { // DeleteProjectPolicyRequest
31
31
  * ProjectArn: "STRING_VALUE", // required
32
32
  * PolicyName: "STRING_VALUE", // required
33
33
  * PolicyRevisionId: "STRING_VALUE",
@@ -33,7 +33,7 @@ export interface DeleteProjectVersionCommandOutput extends DeleteProjectVersionR
33
33
  * import { RekognitionClient, DeleteProjectVersionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
34
34
  * // const { RekognitionClient, DeleteProjectVersionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
35
35
  * const client = new RekognitionClient(config);
36
- * const input = {
36
+ * const input = { // DeleteProjectVersionRequest
37
37
  * ProjectVersionArn: "STRING_VALUE", // required
38
38
  * };
39
39
  * const command = new DeleteProjectVersionCommand(input);
@@ -27,7 +27,7 @@ export interface DeleteStreamProcessorCommandOutput extends DeleteStreamProcesso
27
27
  * import { RekognitionClient, DeleteStreamProcessorCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
28
28
  * // const { RekognitionClient, DeleteStreamProcessorCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
29
29
  * const client = new RekognitionClient(config);
30
- * const input = {
30
+ * const input = { // DeleteStreamProcessorRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteStreamProcessorCommand(input);
@@ -30,7 +30,7 @@ export interface DescribeCollectionCommandOutput extends DescribeCollectionRespo
30
30
  * import { RekognitionClient, DescribeCollectionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
31
31
  * // const { RekognitionClient, DescribeCollectionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
32
32
  * const client = new RekognitionClient(config);
33
- * const input = {
33
+ * const input = { // DescribeCollectionRequest
34
34
  * CollectionId: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DescribeCollectionCommand(input);
@@ -30,7 +30,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
30
30
  * import { RekognitionClient, DescribeDatasetCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
31
31
  * // const { RekognitionClient, DescribeDatasetCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
32
32
  * const client = new RekognitionClient(config);
33
- * const input = {
33
+ * const input = { // DescribeDatasetRequest
34
34
  * DatasetArn: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DescribeDatasetCommand(input);
@@ -30,9 +30,9 @@ export interface DescribeProjectVersionsCommandOutput extends DescribeProjectVer
30
30
  * import { RekognitionClient, DescribeProjectVersionsCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
31
31
  * // const { RekognitionClient, DescribeProjectVersionsCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
32
32
  * const client = new RekognitionClient(config);
33
- * const input = {
33
+ * const input = { // DescribeProjectVersionsRequest
34
34
  * ProjectArn: "STRING_VALUE", // required
35
- * VersionNames: [
35
+ * VersionNames: [ // VersionNames
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * NextToken: "STRING_VALUE",
@@ -27,10 +27,10 @@ export interface DescribeProjectsCommandOutput extends DescribeProjectsResponse,
27
27
  * import { RekognitionClient, DescribeProjectsCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
28
28
  * // const { RekognitionClient, DescribeProjectsCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
29
29
  * const client = new RekognitionClient(config);
30
- * const input = {
30
+ * const input = { // DescribeProjectsRequest
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
33
- * ProjectNames: [
33
+ * ProjectNames: [ // ProjectNames
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * };
@@ -27,7 +27,7 @@ export interface DescribeStreamProcessorCommandOutput extends DescribeStreamProc
27
27
  * import { RekognitionClient, DescribeStreamProcessorCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
28
28
  * // const { RekognitionClient, DescribeStreamProcessorCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
29
29
  * const client = new RekognitionClient(config);
30
- * const input = {
30
+ * const input = { // DescribeStreamProcessorRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DescribeStreamProcessorCommand(input);
@@ -57,11 +57,11 @@ export interface DetectCustomLabelsCommandOutput extends DetectCustomLabelsRespo
57
57
  * import { RekognitionClient, DetectCustomLabelsCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
58
58
  * // const { RekognitionClient, DetectCustomLabelsCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
59
59
  * const client = new RekognitionClient(config);
60
- * const input = {
60
+ * const input = { // DetectCustomLabelsRequest
61
61
  * ProjectVersionArn: "STRING_VALUE", // required
62
- * Image: {
62
+ * Image: { // Image
63
63
  * Bytes: "BLOB_VALUE",
64
- * S3Object: {
64
+ * S3Object: { // S3Object
65
65
  * Bucket: "STRING_VALUE",
66
66
  * Name: "STRING_VALUE",
67
67
  * Version: "STRING_VALUE",
@@ -44,16 +44,16 @@ export interface DetectFacesCommandOutput extends DetectFacesResponse, __Metadat
44
44
  * import { RekognitionClient, DetectFacesCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
45
45
  * // const { RekognitionClient, DetectFacesCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
46
46
  * const client = new RekognitionClient(config);
47
- * const input = {
48
- * Image: {
47
+ * const input = { // DetectFacesRequest
48
+ * Image: { // Image
49
49
  * Bytes: "BLOB_VALUE",
50
- * S3Object: {
50
+ * S3Object: { // S3Object
51
51
  * Bucket: "STRING_VALUE",
52
52
  * Name: "STRING_VALUE",
53
53
  * Version: "STRING_VALUE",
54
54
  * },
55
55
  * },
56
- * Attributes: [
56
+ * Attributes: [ // Attributes
57
57
  * "DEFAULT" || "ALL",
58
58
  * ],
59
59
  * };
@@ -138,10 +138,10 @@ export interface DetectLabelsCommandOutput extends DetectLabelsResponse, __Metad
138
138
  * import { RekognitionClient, DetectLabelsCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
139
139
  * // const { RekognitionClient, DetectLabelsCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
140
140
  * const client = new RekognitionClient(config);
141
- * const input = {
142
- * Image: {
141
+ * const input = { // DetectLabelsRequest
142
+ * Image: { // Image
143
143
  * Bytes: "BLOB_VALUE",
144
- * S3Object: {
144
+ * S3Object: { // S3Object
145
145
  * Bucket: "STRING_VALUE",
146
146
  * Name: "STRING_VALUE",
147
147
  * Version: "STRING_VALUE",
@@ -149,12 +149,12 @@ export interface DetectLabelsCommandOutput extends DetectLabelsResponse, __Metad
149
149
  * },
150
150
  * MaxLabels: Number("int"),
151
151
  * MinConfidence: Number("float"),
152
- * Features: [
152
+ * Features: [ // DetectLabelsFeatureList
153
153
  * "GENERAL_LABELS" || "IMAGE_PROPERTIES",
154
154
  * ],
155
- * Settings: {
156
- * GeneralLabels: {
157
- * LabelInclusionFilters: [
155
+ * Settings: { // DetectLabelsSettings
156
+ * GeneralLabels: { // GeneralLabelsSettings
157
+ * LabelInclusionFilters: [ // GeneralLabelsFilterList
158
158
  * "STRING_VALUE",
159
159
  * ],
160
160
  * LabelExclusionFilters: [
@@ -167,7 +167,7 @@ export interface DetectLabelsCommandOutput extends DetectLabelsResponse, __Metad
167
167
  * "STRING_VALUE",
168
168
  * ],
169
169
  * },
170
- * ImageProperties: {
170
+ * ImageProperties: { // DetectLabelsImagePropertiesSettings
171
171
  * MaxDominantColors: Number("int"),
172
172
  * },
173
173
  * },
@@ -38,21 +38,21 @@ export interface DetectModerationLabelsCommandOutput extends DetectModerationLab
38
38
  * import { RekognitionClient, DetectModerationLabelsCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
39
39
  * // const { RekognitionClient, DetectModerationLabelsCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
40
40
  * const client = new RekognitionClient(config);
41
- * const input = {
42
- * Image: {
41
+ * const input = { // DetectModerationLabelsRequest
42
+ * Image: { // Image
43
43
  * Bytes: "BLOB_VALUE",
44
- * S3Object: {
44
+ * S3Object: { // S3Object
45
45
  * Bucket: "STRING_VALUE",
46
46
  * Name: "STRING_VALUE",
47
47
  * Version: "STRING_VALUE",
48
48
  * },
49
49
  * },
50
50
  * MinConfidence: Number("float"),
51
- * HumanLoopConfig: {
51
+ * HumanLoopConfig: { // HumanLoopConfig
52
52
  * HumanLoopName: "STRING_VALUE", // required
53
53
  * FlowDefinitionArn: "STRING_VALUE", // required
54
- * DataAttributes: {
55
- * ContentClassifiers: [
54
+ * DataAttributes: { // HumanLoopDataAttributes
55
+ * ContentClassifiers: [ // ContentClassifiers
56
56
  * "FreeOfPersonallyIdentifiableInformation" || "FreeOfAdultContent",
57
57
  * ],
58
58
  * },
@@ -62,18 +62,18 @@ export interface DetectProtectiveEquipmentCommandOutput extends DetectProtective
62
62
  * import { RekognitionClient, DetectProtectiveEquipmentCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
63
63
  * // const { RekognitionClient, DetectProtectiveEquipmentCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
64
64
  * const client = new RekognitionClient(config);
65
- * const input = {
66
- * Image: {
65
+ * const input = { // DetectProtectiveEquipmentRequest
66
+ * Image: { // Image
67
67
  * Bytes: "BLOB_VALUE",
68
- * S3Object: {
68
+ * S3Object: { // S3Object
69
69
  * Bucket: "STRING_VALUE",
70
70
  * Name: "STRING_VALUE",
71
71
  * Version: "STRING_VALUE",
72
72
  * },
73
73
  * },
74
- * SummarizationAttributes: {
74
+ * SummarizationAttributes: { // ProtectiveEquipmentSummarizationAttributes
75
75
  * MinConfidence: Number("float"), // required
76
- * RequiredEquipmentTypes: [ // required
76
+ * RequiredEquipmentTypes: [ // ProtectiveEquipmentTypes // required
77
77
  * "FACE_COVER" || "HAND_COVER" || "HEAD_COVER",
78
78
  * ],
79
79
  * },
@@ -48,31 +48,31 @@ export interface DetectTextCommandOutput extends DetectTextResponse, __MetadataB
48
48
  * import { RekognitionClient, DetectTextCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
49
49
  * // const { RekognitionClient, DetectTextCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
50
50
  * const client = new RekognitionClient(config);
51
- * const input = {
52
- * Image: {
51
+ * const input = { // DetectTextRequest
52
+ * Image: { // Image
53
53
  * Bytes: "BLOB_VALUE",
54
- * S3Object: {
54
+ * S3Object: { // S3Object
55
55
  * Bucket: "STRING_VALUE",
56
56
  * Name: "STRING_VALUE",
57
57
  * Version: "STRING_VALUE",
58
58
  * },
59
59
  * },
60
- * Filters: {
61
- * WordFilter: {
60
+ * Filters: { // DetectTextFilters
61
+ * WordFilter: { // DetectionFilter
62
62
  * MinConfidence: Number("float"),
63
63
  * MinBoundingBoxHeight: Number("float"),
64
64
  * MinBoundingBoxWidth: Number("float"),
65
65
  * },
66
- * RegionsOfInterest: [
67
- * {
68
- * BoundingBox: {
66
+ * RegionsOfInterest: [ // RegionsOfInterest
67
+ * { // RegionOfInterest
68
+ * BoundingBox: { // BoundingBox
69
69
  * Width: Number("float"),
70
70
  * Height: Number("float"),
71
71
  * Left: Number("float"),
72
72
  * Top: Number("float"),
73
73
  * },
74
- * Polygon: [
75
- * {
74
+ * Polygon: [ // Polygon
75
+ * { // Point
76
76
  * X: Number("float"),
77
77
  * Y: Number("float"),
78
78
  * },
@@ -36,9 +36,9 @@ export interface DistributeDatasetEntriesCommandOutput extends DistributeDataset
36
36
  * import { RekognitionClient, DistributeDatasetEntriesCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
37
37
  * // const { RekognitionClient, DistributeDatasetEntriesCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
38
38
  * const client = new RekognitionClient(config);
39
- * const input = {
40
- * Datasets: [ // required
41
- * {
39
+ * const input = { // DistributeDatasetEntriesRequest
40
+ * Datasets: [ // DistributeDatasetMetadataList // required
41
+ * { // DistributeDataset
42
42
  * Arn: "STRING_VALUE", // required
43
43
  * },
44
44
  * ],
@@ -32,7 +32,7 @@ export interface GetCelebrityInfoCommandOutput extends GetCelebrityInfoResponse,
32
32
  * import { RekognitionClient, GetCelebrityInfoCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
33
33
  * // const { RekognitionClient, GetCelebrityInfoCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
34
34
  * const client = new RekognitionClient(config);
35
- * const input = {
35
+ * const input = { // GetCelebrityInfoRequest
36
36
  * Id: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new GetCelebrityInfoCommand(input);
@@ -64,7 +64,7 @@ export interface GetCelebrityRecognitionCommandOutput extends GetCelebrityRecogn
64
64
  * import { RekognitionClient, GetCelebrityRecognitionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
65
65
  * // const { RekognitionClient, GetCelebrityRecognitionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
66
66
  * const client = new RekognitionClient(config);
67
- * const input = {
67
+ * const input = { // GetCelebrityRecognitionRequest
68
68
  * JobId: "STRING_VALUE", // required
69
69
  * MaxResults: Number("int"),
70
70
  * NextToken: "STRING_VALUE",
@@ -52,7 +52,7 @@ export interface GetContentModerationCommandOutput extends GetContentModerationR
52
52
  * import { RekognitionClient, GetContentModerationCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
53
53
  * // const { RekognitionClient, GetContentModerationCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
54
54
  * const client = new RekognitionClient(config);
55
- * const input = {
55
+ * const input = { // GetContentModerationRequest
56
56
  * JobId: "STRING_VALUE", // required
57
57
  * MaxResults: Number("int"),
58
58
  * NextToken: "STRING_VALUE",
@@ -38,7 +38,7 @@ export interface GetFaceDetectionCommandOutput extends GetFaceDetectionResponse,
38
38
  * import { RekognitionClient, GetFaceDetectionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
39
39
  * // const { RekognitionClient, GetFaceDetectionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
40
40
  * const client = new RekognitionClient(config);
41
- * const input = {
41
+ * const input = { // GetFaceDetectionRequest
42
42
  * JobId: "STRING_VALUE", // required
43
43
  * MaxResults: Number("int"),
44
44
  * NextToken: "STRING_VALUE",
@@ -54,7 +54,7 @@ export interface GetFaceSearchCommandOutput extends GetFaceSearchResponse, __Met
54
54
  * import { RekognitionClient, GetFaceSearchCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
55
55
  * // const { RekognitionClient, GetFaceSearchCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
56
56
  * const client = new RekognitionClient(config);
57
- * const input = {
57
+ * const input = { // GetFaceSearchRequest
58
58
  * JobId: "STRING_VALUE", // required
59
59
  * MaxResults: Number("int"),
60
60
  * NextToken: "STRING_VALUE",
@@ -91,7 +91,7 @@ export interface GetLabelDetectionCommandOutput extends GetLabelDetectionRespons
91
91
  * import { RekognitionClient, GetLabelDetectionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
92
92
  * // const { RekognitionClient, GetLabelDetectionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
93
93
  * const client = new RekognitionClient(config);
94
- * const input = {
94
+ * const input = { // GetLabelDetectionRequest
95
95
  * JobId: "STRING_VALUE", // required
96
96
  * MaxResults: Number("int"),
97
97
  * NextToken: "STRING_VALUE",
@@ -50,7 +50,7 @@ export interface GetPersonTrackingCommandOutput extends GetPersonTrackingRespons
50
50
  * import { RekognitionClient, GetPersonTrackingCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
51
51
  * // const { RekognitionClient, GetPersonTrackingCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
52
52
  * const client = new RekognitionClient(config);
53
- * const input = {
53
+ * const input = { // GetPersonTrackingRequest
54
54
  * JobId: "STRING_VALUE", // required
55
55
  * MaxResults: Number("int"),
56
56
  * NextToken: "STRING_VALUE",
@@ -47,7 +47,7 @@ export interface GetSegmentDetectionCommandOutput extends GetSegmentDetectionRes
47
47
  * import { RekognitionClient, GetSegmentDetectionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
48
48
  * // const { RekognitionClient, GetSegmentDetectionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
49
49
  * const client = new RekognitionClient(config);
50
- * const input = {
50
+ * const input = { // GetSegmentDetectionRequest
51
51
  * JobId: "STRING_VALUE", // required
52
52
  * MaxResults: Number("int"),
53
53
  * NextToken: "STRING_VALUE",
@@ -44,7 +44,7 @@ export interface GetTextDetectionCommandOutput extends GetTextDetectionResponse,
44
44
  * import { RekognitionClient, GetTextDetectionCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
45
45
  * // const { RekognitionClient, GetTextDetectionCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
46
46
  * const client = new RekognitionClient(config);
47
- * const input = {
47
+ * const input = { // GetTextDetectionRequest
48
48
  * JobId: "STRING_VALUE", // required
49
49
  * MaxResults: Number("int"),
50
50
  * NextToken: "STRING_VALUE",