@aws-sdk/client-rekognition 3.279.0 → 3.281.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 (65) hide show
  1. package/README.md +507 -0
  2. package/dist-types/commands/CompareFacesCommand.d.ts +6 -0
  3. package/dist-types/commands/CopyProjectVersionCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateCollectionCommand.d.ts +6 -0
  5. package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
  6. package/dist-types/commands/CreateProjectCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateProjectVersionCommand.d.ts +6 -0
  8. package/dist-types/commands/CreateStreamProcessorCommand.d.ts +6 -0
  9. package/dist-types/commands/DeleteCollectionCommand.d.ts +6 -0
  10. package/dist-types/commands/DeleteDatasetCommand.d.ts +6 -0
  11. package/dist-types/commands/DeleteFacesCommand.d.ts +6 -0
  12. package/dist-types/commands/DeleteProjectCommand.d.ts +6 -0
  13. package/dist-types/commands/DeleteProjectPolicyCommand.d.ts +6 -0
  14. package/dist-types/commands/DeleteProjectVersionCommand.d.ts +6 -0
  15. package/dist-types/commands/DeleteStreamProcessorCommand.d.ts +6 -0
  16. package/dist-types/commands/DescribeCollectionCommand.d.ts +6 -0
  17. package/dist-types/commands/DescribeDatasetCommand.d.ts +6 -0
  18. package/dist-types/commands/DescribeProjectVersionsCommand.d.ts +6 -0
  19. package/dist-types/commands/DescribeProjectsCommand.d.ts +6 -0
  20. package/dist-types/commands/DescribeStreamProcessorCommand.d.ts +6 -0
  21. package/dist-types/commands/DetectCustomLabelsCommand.d.ts +6 -0
  22. package/dist-types/commands/DetectFacesCommand.d.ts +6 -0
  23. package/dist-types/commands/DetectLabelsCommand.d.ts +6 -0
  24. package/dist-types/commands/DetectModerationLabelsCommand.d.ts +6 -0
  25. package/dist-types/commands/DetectProtectiveEquipmentCommand.d.ts +6 -0
  26. package/dist-types/commands/DetectTextCommand.d.ts +6 -0
  27. package/dist-types/commands/DistributeDatasetEntriesCommand.d.ts +6 -0
  28. package/dist-types/commands/GetCelebrityInfoCommand.d.ts +6 -0
  29. package/dist-types/commands/GetCelebrityRecognitionCommand.d.ts +6 -0
  30. package/dist-types/commands/GetContentModerationCommand.d.ts +6 -0
  31. package/dist-types/commands/GetFaceDetectionCommand.d.ts +6 -0
  32. package/dist-types/commands/GetFaceSearchCommand.d.ts +6 -0
  33. package/dist-types/commands/GetLabelDetectionCommand.d.ts +6 -0
  34. package/dist-types/commands/GetPersonTrackingCommand.d.ts +6 -0
  35. package/dist-types/commands/GetSegmentDetectionCommand.d.ts +6 -0
  36. package/dist-types/commands/GetTextDetectionCommand.d.ts +6 -0
  37. package/dist-types/commands/IndexFacesCommand.d.ts +6 -0
  38. package/dist-types/commands/ListCollectionsCommand.d.ts +6 -0
  39. package/dist-types/commands/ListDatasetEntriesCommand.d.ts +6 -0
  40. package/dist-types/commands/ListDatasetLabelsCommand.d.ts +6 -0
  41. package/dist-types/commands/ListFacesCommand.d.ts +6 -0
  42. package/dist-types/commands/ListProjectPoliciesCommand.d.ts +6 -0
  43. package/dist-types/commands/ListStreamProcessorsCommand.d.ts +6 -0
  44. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  45. package/dist-types/commands/PutProjectPolicyCommand.d.ts +6 -0
  46. package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +6 -0
  47. package/dist-types/commands/SearchFacesByImageCommand.d.ts +6 -0
  48. package/dist-types/commands/SearchFacesCommand.d.ts +6 -0
  49. package/dist-types/commands/StartCelebrityRecognitionCommand.d.ts +6 -0
  50. package/dist-types/commands/StartContentModerationCommand.d.ts +6 -0
  51. package/dist-types/commands/StartFaceDetectionCommand.d.ts +6 -0
  52. package/dist-types/commands/StartFaceSearchCommand.d.ts +6 -0
  53. package/dist-types/commands/StartLabelDetectionCommand.d.ts +6 -0
  54. package/dist-types/commands/StartPersonTrackingCommand.d.ts +6 -0
  55. package/dist-types/commands/StartProjectVersionCommand.d.ts +6 -0
  56. package/dist-types/commands/StartSegmentDetectionCommand.d.ts +6 -0
  57. package/dist-types/commands/StartStreamProcessorCommand.d.ts +6 -0
  58. package/dist-types/commands/StartTextDetectionCommand.d.ts +6 -0
  59. package/dist-types/commands/StopProjectVersionCommand.d.ts +6 -0
  60. package/dist-types/commands/StopStreamProcessorCommand.d.ts +6 -0
  61. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  62. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  63. package/dist-types/commands/UpdateDatasetEntriesCommand.d.ts +6 -0
  64. package/dist-types/commands/UpdateStreamProcessorCommand.d.ts +6 -0
  65. package/package.json +3 -3
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DeleteCollectionRequest, DeleteCollectionResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DeleteCollectionCommand}.
8
+ */
6
9
  export interface DeleteCollectionCommandInput extends DeleteCollectionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteCollectionCommand}.
13
+ */
8
14
  export interface DeleteCollectionCommandOutput extends DeleteCollectionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DeleteDatasetCommand}.
8
+ */
6
9
  export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteDatasetCommand}.
13
+ */
8
14
  export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DeleteFacesRequest, DeleteFacesResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DeleteFacesCommand}.
8
+ */
6
9
  export interface DeleteFacesCommandInput extends DeleteFacesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteFacesCommand}.
13
+ */
8
14
  export interface DeleteFacesCommandOutput extends DeleteFacesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DeleteProjectCommand}.
8
+ */
6
9
  export interface DeleteProjectCommandInput extends DeleteProjectRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteProjectCommand}.
13
+ */
8
14
  export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DeleteProjectPolicyRequest, DeleteProjectPolicyResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DeleteProjectPolicyCommand}.
8
+ */
6
9
  export interface DeleteProjectPolicyCommandInput extends DeleteProjectPolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteProjectPolicyCommand}.
13
+ */
8
14
  export interface DeleteProjectPolicyCommandOutput extends DeleteProjectPolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DeleteProjectVersionRequest, DeleteProjectVersionResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DeleteProjectVersionCommand}.
8
+ */
6
9
  export interface DeleteProjectVersionCommandInput extends DeleteProjectVersionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteProjectVersionCommand}.
13
+ */
8
14
  export interface DeleteProjectVersionCommandOutput extends DeleteProjectVersionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DeleteStreamProcessorRequest, DeleteStreamProcessorResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DeleteStreamProcessorCommand}.
8
+ */
6
9
  export interface DeleteStreamProcessorCommandInput extends DeleteStreamProcessorRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteStreamProcessorCommand}.
13
+ */
8
14
  export interface DeleteStreamProcessorCommandOutput extends DeleteStreamProcessorResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DescribeCollectionRequest, DescribeCollectionResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DescribeCollectionCommand}.
8
+ */
6
9
  export interface DescribeCollectionCommandInput extends DescribeCollectionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeCollectionCommand}.
13
+ */
8
14
  export interface DescribeCollectionCommandOutput extends DescribeCollectionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DescribeDatasetCommand}.
8
+ */
6
9
  export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeDatasetCommand}.
13
+ */
8
14
  export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DescribeProjectVersionsRequest, DescribeProjectVersionsResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DescribeProjectVersionsCommand}.
8
+ */
6
9
  export interface DescribeProjectVersionsCommandInput extends DescribeProjectVersionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeProjectVersionsCommand}.
13
+ */
8
14
  export interface DescribeProjectVersionsCommandOutput extends DescribeProjectVersionsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DescribeProjectsRequest, DescribeProjectsResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DescribeProjectsCommand}.
8
+ */
6
9
  export interface DescribeProjectsCommandInput extends DescribeProjectsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeProjectsCommand}.
13
+ */
8
14
  export interface DescribeProjectsCommandOutput extends DescribeProjectsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DescribeStreamProcessorRequest, DescribeStreamProcessorResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DescribeStreamProcessorCommand}.
8
+ */
6
9
  export interface DescribeStreamProcessorCommandInput extends DescribeStreamProcessorRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeStreamProcessorCommand}.
13
+ */
8
14
  export interface DescribeStreamProcessorCommandOutput extends DescribeStreamProcessorResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DetectCustomLabelsRequest, DetectCustomLabelsResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DetectCustomLabelsCommand}.
8
+ */
6
9
  export interface DetectCustomLabelsCommandInput extends DetectCustomLabelsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectCustomLabelsCommand}.
13
+ */
8
14
  export interface DetectCustomLabelsCommandOutput extends DetectCustomLabelsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DetectFacesRequest, DetectFacesResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DetectFacesCommand}.
8
+ */
6
9
  export interface DetectFacesCommandInput extends DetectFacesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectFacesCommand}.
13
+ */
8
14
  export interface DetectFacesCommandOutput extends DetectFacesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DetectLabelsRequest, DetectLabelsResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DetectLabelsCommand}.
8
+ */
6
9
  export interface DetectLabelsCommandInput extends DetectLabelsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectLabelsCommand}.
13
+ */
8
14
  export interface DetectLabelsCommandOutput extends DetectLabelsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DetectModerationLabelsRequest, DetectModerationLabelsResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DetectModerationLabelsCommand}.
8
+ */
6
9
  export interface DetectModerationLabelsCommandInput extends DetectModerationLabelsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectModerationLabelsCommand}.
13
+ */
8
14
  export interface DetectModerationLabelsCommandOutput extends DetectModerationLabelsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DetectProtectiveEquipmentRequest, DetectProtectiveEquipmentResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DetectProtectiveEquipmentCommand}.
8
+ */
6
9
  export interface DetectProtectiveEquipmentCommandInput extends DetectProtectiveEquipmentRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectProtectiveEquipmentCommand}.
13
+ */
8
14
  export interface DetectProtectiveEquipmentCommandOutput extends DetectProtectiveEquipmentResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DetectTextRequest, DetectTextResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DetectTextCommand}.
8
+ */
6
9
  export interface DetectTextCommandInput extends DetectTextRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DetectTextCommand}.
13
+ */
8
14
  export interface DetectTextCommandOutput extends DetectTextResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { DistributeDatasetEntriesRequest, DistributeDatasetEntriesResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link DistributeDatasetEntriesCommand}.
8
+ */
6
9
  export interface DistributeDatasetEntriesCommandInput extends DistributeDatasetEntriesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DistributeDatasetEntriesCommand}.
13
+ */
8
14
  export interface DistributeDatasetEntriesCommandOutput extends DistributeDatasetEntriesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetCelebrityInfoRequest, GetCelebrityInfoResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetCelebrityInfoCommand}.
8
+ */
6
9
  export interface GetCelebrityInfoCommandInput extends GetCelebrityInfoRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetCelebrityInfoCommand}.
13
+ */
8
14
  export interface GetCelebrityInfoCommandOutput extends GetCelebrityInfoResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetCelebrityRecognitionRequest, GetCelebrityRecognitionResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetCelebrityRecognitionCommand}.
8
+ */
6
9
  export interface GetCelebrityRecognitionCommandInput extends GetCelebrityRecognitionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetCelebrityRecognitionCommand}.
13
+ */
8
14
  export interface GetCelebrityRecognitionCommandOutput extends GetCelebrityRecognitionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetContentModerationRequest, GetContentModerationResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetContentModerationCommand}.
8
+ */
6
9
  export interface GetContentModerationCommandInput extends GetContentModerationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetContentModerationCommand}.
13
+ */
8
14
  export interface GetContentModerationCommandOutput extends GetContentModerationResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetFaceDetectionRequest, GetFaceDetectionResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetFaceDetectionCommand}.
8
+ */
6
9
  export interface GetFaceDetectionCommandInput extends GetFaceDetectionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetFaceDetectionCommand}.
13
+ */
8
14
  export interface GetFaceDetectionCommandOutput extends GetFaceDetectionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetFaceSearchRequest, GetFaceSearchResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetFaceSearchCommand}.
8
+ */
6
9
  export interface GetFaceSearchCommandInput extends GetFaceSearchRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetFaceSearchCommand}.
13
+ */
8
14
  export interface GetFaceSearchCommandOutput extends GetFaceSearchResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetLabelDetectionRequest, GetLabelDetectionResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetLabelDetectionCommand}.
8
+ */
6
9
  export interface GetLabelDetectionCommandInput extends GetLabelDetectionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetLabelDetectionCommand}.
13
+ */
8
14
  export interface GetLabelDetectionCommandOutput extends GetLabelDetectionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetPersonTrackingRequest, GetPersonTrackingResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetPersonTrackingCommand}.
8
+ */
6
9
  export interface GetPersonTrackingCommandInput extends GetPersonTrackingRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetPersonTrackingCommand}.
13
+ */
8
14
  export interface GetPersonTrackingCommandOutput extends GetPersonTrackingResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetSegmentDetectionRequest, GetSegmentDetectionResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetSegmentDetectionCommand}.
8
+ */
6
9
  export interface GetSegmentDetectionCommandInput extends GetSegmentDetectionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetSegmentDetectionCommand}.
13
+ */
8
14
  export interface GetSegmentDetectionCommandOutput extends GetSegmentDetectionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GetTextDetectionRequest, GetTextDetectionResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link GetTextDetectionCommand}.
8
+ */
6
9
  export interface GetTextDetectionCommandInput extends GetTextDetectionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetTextDetectionCommand}.
13
+ */
8
14
  export interface GetTextDetectionCommandOutput extends GetTextDetectionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { IndexFacesRequest, IndexFacesResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link IndexFacesCommand}.
8
+ */
6
9
  export interface IndexFacesCommandInput extends IndexFacesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link IndexFacesCommand}.
13
+ */
8
14
  export interface IndexFacesCommandOutput extends IndexFacesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ListCollectionsRequest, ListCollectionsResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link ListCollectionsCommand}.
8
+ */
6
9
  export interface ListCollectionsCommandInput extends ListCollectionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListCollectionsCommand}.
13
+ */
8
14
  export interface ListCollectionsCommandOutput extends ListCollectionsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ListDatasetEntriesRequest, ListDatasetEntriesResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link ListDatasetEntriesCommand}.
8
+ */
6
9
  export interface ListDatasetEntriesCommandInput extends ListDatasetEntriesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListDatasetEntriesCommand}.
13
+ */
8
14
  export interface ListDatasetEntriesCommandOutput extends ListDatasetEntriesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ListDatasetLabelsRequest, ListDatasetLabelsResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link ListDatasetLabelsCommand}.
8
+ */
6
9
  export interface ListDatasetLabelsCommandInput extends ListDatasetLabelsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListDatasetLabelsCommand}.
13
+ */
8
14
  export interface ListDatasetLabelsCommandOutput extends ListDatasetLabelsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ListFacesRequest, ListFacesResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link ListFacesCommand}.
8
+ */
6
9
  export interface ListFacesCommandInput extends ListFacesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListFacesCommand}.
13
+ */
8
14
  export interface ListFacesCommandOutput extends ListFacesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ListProjectPoliciesRequest, ListProjectPoliciesResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link ListProjectPoliciesCommand}.
8
+ */
6
9
  export interface ListProjectPoliciesCommandInput extends ListProjectPoliciesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListProjectPoliciesCommand}.
13
+ */
8
14
  export interface ListProjectPoliciesCommandOutput extends ListProjectPoliciesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ListStreamProcessorsRequest, ListStreamProcessorsResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link ListStreamProcessorsCommand}.
8
+ */
6
9
  export interface ListStreamProcessorsCommandInput extends ListStreamProcessorsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListStreamProcessorsCommand}.
13
+ */
8
14
  export interface ListStreamProcessorsCommandOutput extends ListStreamProcessorsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link ListTagsForResourceCommand}.
8
+ */
6
9
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListTagsForResourceCommand}.
13
+ */
8
14
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { PutProjectPolicyRequest, PutProjectPolicyResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link PutProjectPolicyCommand}.
8
+ */
6
9
  export interface PutProjectPolicyCommandInput extends PutProjectPolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link PutProjectPolicyCommand}.
13
+ */
8
14
  export interface PutProjectPolicyCommandOutput extends PutProjectPolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { RecognizeCelebritiesRequest, RecognizeCelebritiesResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link RecognizeCelebritiesCommand}.
8
+ */
6
9
  export interface RecognizeCelebritiesCommandInput extends RecognizeCelebritiesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link RecognizeCelebritiesCommand}.
13
+ */
8
14
  export interface RecognizeCelebritiesCommandOutput extends RecognizeCelebritiesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { SearchFacesByImageRequest, SearchFacesByImageResponse } from "../models/models_0";
5
5
  import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
6
+ /**
7
+ * The input for {@link SearchFacesByImageCommand}.
8
+ */
6
9
  export interface SearchFacesByImageCommandInput extends SearchFacesByImageRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link SearchFacesByImageCommand}.
13
+ */
8
14
  export interface SearchFacesByImageCommandOutput extends SearchFacesByImageResponse, __MetadataBearer {
9
15
  }
10
16
  /**