@aws-sdk/client-rekognition 3.39.0 → 3.43.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.
- package/CHANGELOG.md +39 -0
- package/dist-cjs/Rekognition.js +105 -0
- package/dist-cjs/commands/CreateDatasetCommand.js +36 -0
- package/dist-cjs/commands/DeleteDatasetCommand.js +36 -0
- package/dist-cjs/commands/DescribeDatasetCommand.js +36 -0
- package/dist-cjs/commands/DistributeDatasetEntriesCommand.js +36 -0
- package/dist-cjs/commands/ListDatasetEntriesCommand.js +36 -0
- package/dist-cjs/commands/ListDatasetLabelsCommand.js +36 -0
- package/dist-cjs/commands/UpdateDatasetEntriesCommand.js +36 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/endpoints.js +157 -24
- package/dist-cjs/models/models_0.js +170 -16
- package/dist-cjs/pagination/ListDatasetEntriesPaginator.js +35 -0
- package/dist-cjs/pagination/ListDatasetLabelsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1077 -54
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/Rekognition.js +105 -0
- package/dist-es/commands/CreateDatasetCommand.js +39 -0
- package/dist-es/commands/DeleteDatasetCommand.js +39 -0
- package/dist-es/commands/DescribeDatasetCommand.js +39 -0
- package/dist-es/commands/DistributeDatasetEntriesCommand.js +39 -0
- package/dist-es/commands/ListDatasetEntriesCommand.js +39 -0
- package/dist-es/commands/ListDatasetLabelsCommand.js +39 -0
- package/dist-es/commands/UpdateDatasetEntriesCommand.js +39 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoints.js +157 -24
- package/dist-es/models/models_0.js +117 -8
- package/dist-es/pagination/ListDatasetEntriesPaginator.js +74 -0
- package/dist-es/pagination/ListDatasetLabelsPaginator.js +74 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +1111 -51
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/Rekognition.d.ts +209 -29
- package/dist-types/RekognitionClient.d.ts +17 -2
- package/dist-types/commands/CompareFacesCommand.d.ts +1 -1
- package/dist-types/commands/CreateCollectionCommand.d.ts +1 -1
- package/dist-types/commands/CreateDatasetCommand.d.ts +59 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +3 -3
- package/dist-types/commands/CreateProjectVersionCommand.d.ts +33 -5
- package/dist-types/commands/CreateStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCollectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDatasetCommand.d.ts +44 -0
- package/dist-types/commands/DeleteFacesCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProjectCommand.d.ts +5 -1
- package/dist-types/commands/DeleteProjectVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCollectionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDatasetCommand.d.ts +39 -0
- package/dist-types/commands/DescribeProjectVersionsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeProjectsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/DetectCustomLabelsCommand.d.ts +1 -1
- package/dist-types/commands/DetectFacesCommand.d.ts +1 -1
- package/dist-types/commands/DetectLabelsCommand.d.ts +1 -1
- package/dist-types/commands/DetectModerationLabelsCommand.d.ts +1 -1
- package/dist-types/commands/DetectProtectiveEquipmentCommand.d.ts +1 -1
- package/dist-types/commands/DetectTextCommand.d.ts +1 -1
- package/dist-types/commands/DistributeDatasetEntriesCommand.d.ts +46 -0
- package/dist-types/commands/GetCelebrityInfoCommand.d.ts +1 -1
- package/dist-types/commands/GetCelebrityRecognitionCommand.d.ts +23 -18
- package/dist-types/commands/GetContentModerationCommand.d.ts +1 -1
- package/dist-types/commands/GetFaceDetectionCommand.d.ts +1 -1
- package/dist-types/commands/GetFaceSearchCommand.d.ts +1 -1
- package/dist-types/commands/GetLabelDetectionCommand.d.ts +1 -1
- package/dist-types/commands/GetPersonTrackingCommand.d.ts +1 -1
- package/dist-types/commands/GetSegmentDetectionCommand.d.ts +1 -1
- package/dist-types/commands/GetTextDetectionCommand.d.ts +1 -1
- package/dist-types/commands/IndexFacesCommand.d.ts +1 -1
- package/dist-types/commands/ListCollectionsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetEntriesCommand.d.ts +49 -0
- package/dist-types/commands/ListDatasetLabelsCommand.d.ts +40 -0
- package/dist-types/commands/ListFacesCommand.d.ts +1 -1
- package/dist-types/commands/ListStreamProcessorsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +4 -4
- package/dist-types/commands/SearchFacesByImageCommand.d.ts +1 -1
- package/dist-types/commands/SearchFacesCommand.d.ts +1 -1
- package/dist-types/commands/StartCelebrityRecognitionCommand.d.ts +1 -1
- package/dist-types/commands/StartContentModerationCommand.d.ts +1 -1
- package/dist-types/commands/StartFaceDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StartFaceSearchCommand.d.ts +1 -1
- package/dist-types/commands/StartLabelDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StartPersonTrackingCommand.d.ts +1 -1
- package/dist-types/commands/StartProjectVersionCommand.d.ts +1 -1
- package/dist-types/commands/StartSegmentDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StartStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/StartTextDetectionCommand.d.ts +1 -1
- package/dist-types/commands/StopProjectVersionCommand.d.ts +1 -1
- package/dist-types/commands/StopStreamProcessorCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDatasetEntriesCommand.d.ts +62 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +622 -51
- package/dist-types/pagination/ListDatasetEntriesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDatasetLabelsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +21 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/Rekognition.d.ts +35 -0
- package/dist-types/ts3.4/RekognitionClient.d.ts +13 -2
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DistributeDatasetEntriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDatasetEntriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDatasetLabelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDatasetEntriesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +283 -23
- package/dist-types/ts3.4/pagination/ListDatasetEntriesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDatasetLabelsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +21 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +24 -24
|
@@ -427,6 +427,8 @@ export interface CelebrityDetail {
|
|
|
427
427
|
BoundingBox?: BoundingBox;
|
|
428
428
|
|
|
429
429
|
Face?: FaceDetail;
|
|
430
|
+
|
|
431
|
+
KnownGender?: KnownGender;
|
|
430
432
|
}
|
|
431
433
|
export declare namespace CelebrityDetail {
|
|
432
434
|
|
|
@@ -696,21 +698,40 @@ export declare namespace ServiceQuotaExceededException {
|
|
|
696
698
|
|
|
697
699
|
const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
|
|
698
700
|
}
|
|
699
|
-
|
|
701
|
+
|
|
702
|
+
export interface DatasetSource {
|
|
700
703
|
|
|
701
|
-
|
|
704
|
+
GroundTruthManifest?: GroundTruthManifest;
|
|
705
|
+
|
|
706
|
+
DatasetArn?: string;
|
|
702
707
|
}
|
|
703
|
-
export declare namespace
|
|
708
|
+
export declare namespace DatasetSource {
|
|
704
709
|
|
|
705
|
-
const filterSensitiveLog: (obj:
|
|
710
|
+
const filterSensitiveLog: (obj: DatasetSource) => any;
|
|
706
711
|
}
|
|
707
|
-
export
|
|
712
|
+
export declare enum DatasetType {
|
|
713
|
+
TEST = "TEST",
|
|
714
|
+
TRAIN = "TRAIN"
|
|
715
|
+
}
|
|
716
|
+
export interface CreateDatasetRequest {
|
|
708
717
|
|
|
709
|
-
|
|
718
|
+
DatasetSource?: DatasetSource;
|
|
719
|
+
|
|
720
|
+
DatasetType: DatasetType | string | undefined;
|
|
721
|
+
|
|
722
|
+
ProjectArn: string | undefined;
|
|
710
723
|
}
|
|
711
|
-
export declare namespace
|
|
724
|
+
export declare namespace CreateDatasetRequest {
|
|
712
725
|
|
|
713
|
-
const filterSensitiveLog: (obj:
|
|
726
|
+
const filterSensitiveLog: (obj: CreateDatasetRequest) => any;
|
|
727
|
+
}
|
|
728
|
+
export interface CreateDatasetResponse {
|
|
729
|
+
|
|
730
|
+
DatasetArn?: string;
|
|
731
|
+
}
|
|
732
|
+
export declare namespace CreateDatasetResponse {
|
|
733
|
+
|
|
734
|
+
const filterSensitiveLog: (obj: CreateDatasetResponse) => any;
|
|
714
735
|
}
|
|
715
736
|
|
|
716
737
|
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
@@ -726,6 +747,35 @@ export declare namespace LimitExceededException {
|
|
|
726
747
|
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
727
748
|
}
|
|
728
749
|
|
|
750
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
751
|
+
name: "ResourceNotFoundException";
|
|
752
|
+
$fault: "client";
|
|
753
|
+
Message?: string;
|
|
754
|
+
Code?: string;
|
|
755
|
+
|
|
756
|
+
Logref?: string;
|
|
757
|
+
}
|
|
758
|
+
export declare namespace ResourceNotFoundException {
|
|
759
|
+
|
|
760
|
+
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
761
|
+
}
|
|
762
|
+
export interface CreateProjectRequest {
|
|
763
|
+
|
|
764
|
+
ProjectName: string | undefined;
|
|
765
|
+
}
|
|
766
|
+
export declare namespace CreateProjectRequest {
|
|
767
|
+
|
|
768
|
+
const filterSensitiveLog: (obj: CreateProjectRequest) => any;
|
|
769
|
+
}
|
|
770
|
+
export interface CreateProjectResponse {
|
|
771
|
+
|
|
772
|
+
ProjectArn?: string;
|
|
773
|
+
}
|
|
774
|
+
export declare namespace CreateProjectResponse {
|
|
775
|
+
|
|
776
|
+
const filterSensitiveLog: (obj: CreateProjectResponse) => any;
|
|
777
|
+
}
|
|
778
|
+
|
|
729
779
|
export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
|
|
730
780
|
name: "ResourceInUseException";
|
|
731
781
|
$fault: "client";
|
|
@@ -777,9 +827,9 @@ export interface CreateProjectVersionRequest {
|
|
|
777
827
|
|
|
778
828
|
OutputConfig: OutputConfig | undefined;
|
|
779
829
|
|
|
780
|
-
TrainingData
|
|
830
|
+
TrainingData?: TrainingData;
|
|
781
831
|
|
|
782
|
-
TestingData
|
|
832
|
+
TestingData?: TestingData;
|
|
783
833
|
|
|
784
834
|
Tags?: {
|
|
785
835
|
[key: string]: string;
|
|
@@ -800,19 +850,6 @@ export declare namespace CreateProjectVersionResponse {
|
|
|
800
850
|
const filterSensitiveLog: (obj: CreateProjectVersionResponse) => any;
|
|
801
851
|
}
|
|
802
852
|
|
|
803
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
804
|
-
name: "ResourceNotFoundException";
|
|
805
|
-
$fault: "client";
|
|
806
|
-
Message?: string;
|
|
807
|
-
Code?: string;
|
|
808
|
-
|
|
809
|
-
Logref?: string;
|
|
810
|
-
}
|
|
811
|
-
export declare namespace ResourceNotFoundException {
|
|
812
|
-
|
|
813
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
853
|
export interface KinesisVideoStream {
|
|
817
854
|
|
|
818
855
|
Arn?: string;
|
|
@@ -931,6 +968,104 @@ export declare namespace CustomLabel {
|
|
|
931
968
|
|
|
932
969
|
const filterSensitiveLog: (obj: CustomLabel) => any;
|
|
933
970
|
}
|
|
971
|
+
|
|
972
|
+
export interface DatasetChanges {
|
|
973
|
+
|
|
974
|
+
GroundTruth: Uint8Array | undefined;
|
|
975
|
+
}
|
|
976
|
+
export declare namespace DatasetChanges {
|
|
977
|
+
|
|
978
|
+
const filterSensitiveLog: (obj: DatasetChanges) => any;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
export interface DatasetStats {
|
|
982
|
+
|
|
983
|
+
LabeledEntries?: number;
|
|
984
|
+
|
|
985
|
+
TotalEntries?: number;
|
|
986
|
+
|
|
987
|
+
TotalLabels?: number;
|
|
988
|
+
|
|
989
|
+
ErrorEntries?: number;
|
|
990
|
+
}
|
|
991
|
+
export declare namespace DatasetStats {
|
|
992
|
+
|
|
993
|
+
const filterSensitiveLog: (obj: DatasetStats) => any;
|
|
994
|
+
}
|
|
995
|
+
export declare enum DatasetStatus {
|
|
996
|
+
CREATE_COMPLETE = "CREATE_COMPLETE",
|
|
997
|
+
CREATE_FAILED = "CREATE_FAILED",
|
|
998
|
+
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
999
|
+
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
|
|
1000
|
+
UPDATE_COMPLETE = "UPDATE_COMPLETE",
|
|
1001
|
+
UPDATE_FAILED = "UPDATE_FAILED",
|
|
1002
|
+
UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
|
|
1003
|
+
}
|
|
1004
|
+
export declare enum DatasetStatusMessageCode {
|
|
1005
|
+
CLIENT_ERROR = "CLIENT_ERROR",
|
|
1006
|
+
SERVICE_ERROR = "SERVICE_ERROR",
|
|
1007
|
+
SUCCESS = "SUCCESS"
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
export interface DatasetDescription {
|
|
1011
|
+
|
|
1012
|
+
CreationTimestamp?: Date;
|
|
1013
|
+
|
|
1014
|
+
LastUpdatedTimestamp?: Date;
|
|
1015
|
+
|
|
1016
|
+
Status?: DatasetStatus | string;
|
|
1017
|
+
|
|
1018
|
+
StatusMessage?: string;
|
|
1019
|
+
|
|
1020
|
+
StatusMessageCode?: DatasetStatusMessageCode | string;
|
|
1021
|
+
|
|
1022
|
+
DatasetStats?: DatasetStats;
|
|
1023
|
+
}
|
|
1024
|
+
export declare namespace DatasetDescription {
|
|
1025
|
+
|
|
1026
|
+
const filterSensitiveLog: (obj: DatasetDescription) => any;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
export interface DatasetLabelStats {
|
|
1030
|
+
|
|
1031
|
+
EntryCount?: number;
|
|
1032
|
+
|
|
1033
|
+
BoundingBoxCount?: number;
|
|
1034
|
+
}
|
|
1035
|
+
export declare namespace DatasetLabelStats {
|
|
1036
|
+
|
|
1037
|
+
const filterSensitiveLog: (obj: DatasetLabelStats) => any;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
export interface DatasetLabelDescription {
|
|
1041
|
+
|
|
1042
|
+
LabelName?: string;
|
|
1043
|
+
|
|
1044
|
+
LabelStats?: DatasetLabelStats;
|
|
1045
|
+
}
|
|
1046
|
+
export declare namespace DatasetLabelDescription {
|
|
1047
|
+
|
|
1048
|
+
const filterSensitiveLog: (obj: DatasetLabelDescription) => any;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
export interface DatasetMetadata {
|
|
1052
|
+
|
|
1053
|
+
CreationTimestamp?: Date;
|
|
1054
|
+
|
|
1055
|
+
DatasetType?: DatasetType | string;
|
|
1056
|
+
|
|
1057
|
+
DatasetArn?: string;
|
|
1058
|
+
|
|
1059
|
+
Status?: DatasetStatus | string;
|
|
1060
|
+
|
|
1061
|
+
StatusMessage?: string;
|
|
1062
|
+
|
|
1063
|
+
StatusMessageCode?: DatasetStatusMessageCode | string;
|
|
1064
|
+
}
|
|
1065
|
+
export declare namespace DatasetMetadata {
|
|
1066
|
+
|
|
1067
|
+
const filterSensitiveLog: (obj: DatasetMetadata) => any;
|
|
1068
|
+
}
|
|
934
1069
|
export interface DeleteCollectionRequest {
|
|
935
1070
|
|
|
936
1071
|
CollectionId: string | undefined;
|
|
@@ -947,6 +1082,20 @@ export declare namespace DeleteCollectionResponse {
|
|
|
947
1082
|
|
|
948
1083
|
const filterSensitiveLog: (obj: DeleteCollectionResponse) => any;
|
|
949
1084
|
}
|
|
1085
|
+
export interface DeleteDatasetRequest {
|
|
1086
|
+
|
|
1087
|
+
DatasetArn: string | undefined;
|
|
1088
|
+
}
|
|
1089
|
+
export declare namespace DeleteDatasetRequest {
|
|
1090
|
+
|
|
1091
|
+
const filterSensitiveLog: (obj: DeleteDatasetRequest) => any;
|
|
1092
|
+
}
|
|
1093
|
+
export interface DeleteDatasetResponse {
|
|
1094
|
+
}
|
|
1095
|
+
export declare namespace DeleteDatasetResponse {
|
|
1096
|
+
|
|
1097
|
+
const filterSensitiveLog: (obj: DeleteDatasetResponse) => any;
|
|
1098
|
+
}
|
|
950
1099
|
export interface DeleteFacesRequest {
|
|
951
1100
|
|
|
952
1101
|
CollectionId: string | undefined;
|
|
@@ -1049,11 +1198,29 @@ export declare namespace DescribeCollectionResponse {
|
|
|
1049
1198
|
|
|
1050
1199
|
const filterSensitiveLog: (obj: DescribeCollectionResponse) => any;
|
|
1051
1200
|
}
|
|
1201
|
+
export interface DescribeDatasetRequest {
|
|
1202
|
+
|
|
1203
|
+
DatasetArn: string | undefined;
|
|
1204
|
+
}
|
|
1205
|
+
export declare namespace DescribeDatasetRequest {
|
|
1206
|
+
|
|
1207
|
+
const filterSensitiveLog: (obj: DescribeDatasetRequest) => any;
|
|
1208
|
+
}
|
|
1209
|
+
export interface DescribeDatasetResponse {
|
|
1210
|
+
|
|
1211
|
+
DatasetDescription?: DatasetDescription;
|
|
1212
|
+
}
|
|
1213
|
+
export declare namespace DescribeDatasetResponse {
|
|
1214
|
+
|
|
1215
|
+
const filterSensitiveLog: (obj: DescribeDatasetResponse) => any;
|
|
1216
|
+
}
|
|
1052
1217
|
export interface DescribeProjectsRequest {
|
|
1053
1218
|
|
|
1054
1219
|
NextToken?: string;
|
|
1055
1220
|
|
|
1056
1221
|
MaxResults?: number;
|
|
1222
|
+
|
|
1223
|
+
ProjectNames?: string[];
|
|
1057
1224
|
}
|
|
1058
1225
|
export declare namespace DescribeProjectsRequest {
|
|
1059
1226
|
|
|
@@ -1067,6 +1234,8 @@ export interface ProjectDescription {
|
|
|
1067
1234
|
CreationTimestamp?: Date;
|
|
1068
1235
|
|
|
1069
1236
|
Status?: ProjectStatus | string;
|
|
1237
|
+
|
|
1238
|
+
Datasets?: DatasetMetadata[];
|
|
1070
1239
|
}
|
|
1071
1240
|
export declare namespace ProjectDescription {
|
|
1072
1241
|
|
|
@@ -1578,6 +1747,29 @@ export declare namespace DetectTextResponse {
|
|
|
1578
1747
|
const filterSensitiveLog: (obj: DetectTextResponse) => any;
|
|
1579
1748
|
}
|
|
1580
1749
|
|
|
1750
|
+
export interface DistributeDataset {
|
|
1751
|
+
|
|
1752
|
+
Arn: string | undefined;
|
|
1753
|
+
}
|
|
1754
|
+
export declare namespace DistributeDataset {
|
|
1755
|
+
|
|
1756
|
+
const filterSensitiveLog: (obj: DistributeDataset) => any;
|
|
1757
|
+
}
|
|
1758
|
+
export interface DistributeDatasetEntriesRequest {
|
|
1759
|
+
|
|
1760
|
+
Datasets: DistributeDataset[] | undefined;
|
|
1761
|
+
}
|
|
1762
|
+
export declare namespace DistributeDatasetEntriesRequest {
|
|
1763
|
+
|
|
1764
|
+
const filterSensitiveLog: (obj: DistributeDatasetEntriesRequest) => any;
|
|
1765
|
+
}
|
|
1766
|
+
export interface DistributeDatasetEntriesResponse {
|
|
1767
|
+
}
|
|
1768
|
+
export declare namespace DistributeDatasetEntriesResponse {
|
|
1769
|
+
|
|
1770
|
+
const filterSensitiveLog: (obj: DistributeDatasetEntriesResponse) => any;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1581
1773
|
export interface Face {
|
|
1582
1774
|
|
|
1583
1775
|
FaceId?: string;
|
|
@@ -2160,6 +2352,58 @@ export declare namespace ListCollectionsResponse {
|
|
|
2160
2352
|
|
|
2161
2353
|
const filterSensitiveLog: (obj: ListCollectionsResponse) => any;
|
|
2162
2354
|
}
|
|
2355
|
+
export interface ListDatasetEntriesRequest {
|
|
2356
|
+
|
|
2357
|
+
DatasetArn: string | undefined;
|
|
2358
|
+
|
|
2359
|
+
ContainsLabels?: string[];
|
|
2360
|
+
|
|
2361
|
+
Labeled?: boolean;
|
|
2362
|
+
|
|
2363
|
+
SourceRefContains?: string;
|
|
2364
|
+
|
|
2365
|
+
HasErrors?: boolean;
|
|
2366
|
+
|
|
2367
|
+
NextToken?: string;
|
|
2368
|
+
|
|
2369
|
+
MaxResults?: number;
|
|
2370
|
+
}
|
|
2371
|
+
export declare namespace ListDatasetEntriesRequest {
|
|
2372
|
+
|
|
2373
|
+
const filterSensitiveLog: (obj: ListDatasetEntriesRequest) => any;
|
|
2374
|
+
}
|
|
2375
|
+
export interface ListDatasetEntriesResponse {
|
|
2376
|
+
|
|
2377
|
+
DatasetEntries?: string[];
|
|
2378
|
+
|
|
2379
|
+
NextToken?: string;
|
|
2380
|
+
}
|
|
2381
|
+
export declare namespace ListDatasetEntriesResponse {
|
|
2382
|
+
|
|
2383
|
+
const filterSensitiveLog: (obj: ListDatasetEntriesResponse) => any;
|
|
2384
|
+
}
|
|
2385
|
+
export interface ListDatasetLabelsRequest {
|
|
2386
|
+
|
|
2387
|
+
DatasetArn: string | undefined;
|
|
2388
|
+
|
|
2389
|
+
NextToken?: string;
|
|
2390
|
+
|
|
2391
|
+
MaxResults?: number;
|
|
2392
|
+
}
|
|
2393
|
+
export declare namespace ListDatasetLabelsRequest {
|
|
2394
|
+
|
|
2395
|
+
const filterSensitiveLog: (obj: ListDatasetLabelsRequest) => any;
|
|
2396
|
+
}
|
|
2397
|
+
export interface ListDatasetLabelsResponse {
|
|
2398
|
+
|
|
2399
|
+
DatasetLabelDescriptions?: DatasetLabelDescription[];
|
|
2400
|
+
|
|
2401
|
+
NextToken?: string;
|
|
2402
|
+
}
|
|
2403
|
+
export declare namespace ListDatasetLabelsResponse {
|
|
2404
|
+
|
|
2405
|
+
const filterSensitiveLog: (obj: ListDatasetLabelsResponse) => any;
|
|
2406
|
+
}
|
|
2163
2407
|
export interface ListFacesRequest {
|
|
2164
2408
|
|
|
2165
2409
|
CollectionId: string | undefined;
|
|
@@ -2672,3 +2916,19 @@ export declare namespace UntagResourceResponse {
|
|
|
2672
2916
|
|
|
2673
2917
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2674
2918
|
}
|
|
2919
|
+
export interface UpdateDatasetEntriesRequest {
|
|
2920
|
+
|
|
2921
|
+
DatasetArn: string | undefined;
|
|
2922
|
+
|
|
2923
|
+
Changes: DatasetChanges | undefined;
|
|
2924
|
+
}
|
|
2925
|
+
export declare namespace UpdateDatasetEntriesRequest {
|
|
2926
|
+
|
|
2927
|
+
const filterSensitiveLog: (obj: UpdateDatasetEntriesRequest) => any;
|
|
2928
|
+
}
|
|
2929
|
+
export interface UpdateDatasetEntriesResponse {
|
|
2930
|
+
}
|
|
2931
|
+
export declare namespace UpdateDatasetEntriesResponse {
|
|
2932
|
+
|
|
2933
|
+
const filterSensitiveLog: (obj: UpdateDatasetEntriesResponse) => any;
|
|
2934
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput } from "../commands/ListDatasetEntriesCommand";
|
|
3
|
+
import { RekognitionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListDatasetEntries(config: RekognitionPaginationConfiguration, input: ListDatasetEntriesCommandInput, ...additionalArguments: any): Paginator<ListDatasetEntriesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput } from "../commands/ListDatasetLabelsCommand";
|
|
3
|
+
import { RekognitionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListDatasetLabels(config: RekognitionPaginationConfiguration, input: ListDatasetLabelsCommandInput, ...additionalArguments: any): Paginator<ListDatasetLabelsCommandOutput>;
|
|
@@ -10,5 +10,7 @@ export * from "./GetSegmentDetectionPaginator";
|
|
|
10
10
|
export * from "./GetTextDetectionPaginator";
|
|
11
11
|
export * from "./Interfaces";
|
|
12
12
|
export * from "./ListCollectionsPaginator";
|
|
13
|
+
export * from "./ListDatasetEntriesPaginator";
|
|
14
|
+
export * from "./ListDatasetLabelsPaginator";
|
|
13
15
|
export * from "./ListFacesPaginator";
|
|
14
16
|
export * from "./ListStreamProcessorsPaginator";
|
|
@@ -2,15 +2,18 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { CompareFacesCommandInput, CompareFacesCommandOutput } from "../commands/CompareFacesCommand";
|
|
4
4
|
import { CreateCollectionCommandInput, CreateCollectionCommandOutput } from "../commands/CreateCollectionCommand";
|
|
5
|
+
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "../commands/CreateDatasetCommand";
|
|
5
6
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "../commands/CreateProjectCommand";
|
|
6
7
|
import { CreateProjectVersionCommandInput, CreateProjectVersionCommandOutput } from "../commands/CreateProjectVersionCommand";
|
|
7
8
|
import { CreateStreamProcessorCommandInput, CreateStreamProcessorCommandOutput } from "../commands/CreateStreamProcessorCommand";
|
|
8
9
|
import { DeleteCollectionCommandInput, DeleteCollectionCommandOutput } from "../commands/DeleteCollectionCommand";
|
|
10
|
+
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
|
|
9
11
|
import { DeleteFacesCommandInput, DeleteFacesCommandOutput } from "../commands/DeleteFacesCommand";
|
|
10
12
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
|
|
11
13
|
import { DeleteProjectVersionCommandInput, DeleteProjectVersionCommandOutput } from "../commands/DeleteProjectVersionCommand";
|
|
12
14
|
import { DeleteStreamProcessorCommandInput, DeleteStreamProcessorCommandOutput } from "../commands/DeleteStreamProcessorCommand";
|
|
13
15
|
import { DescribeCollectionCommandInput, DescribeCollectionCommandOutput } from "../commands/DescribeCollectionCommand";
|
|
16
|
+
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "../commands/DescribeDatasetCommand";
|
|
14
17
|
import { DescribeProjectsCommandInput, DescribeProjectsCommandOutput } from "../commands/DescribeProjectsCommand";
|
|
15
18
|
import { DescribeProjectVersionsCommandInput, DescribeProjectVersionsCommandOutput } from "../commands/DescribeProjectVersionsCommand";
|
|
16
19
|
import { DescribeStreamProcessorCommandInput, DescribeStreamProcessorCommandOutput } from "../commands/DescribeStreamProcessorCommand";
|
|
@@ -20,6 +23,7 @@ import { DetectLabelsCommandInput, DetectLabelsCommandOutput } from "../commands
|
|
|
20
23
|
import { DetectModerationLabelsCommandInput, DetectModerationLabelsCommandOutput } from "../commands/DetectModerationLabelsCommand";
|
|
21
24
|
import { DetectProtectiveEquipmentCommandInput, DetectProtectiveEquipmentCommandOutput } from "../commands/DetectProtectiveEquipmentCommand";
|
|
22
25
|
import { DetectTextCommandInput, DetectTextCommandOutput } from "../commands/DetectTextCommand";
|
|
26
|
+
import { DistributeDatasetEntriesCommandInput, DistributeDatasetEntriesCommandOutput } from "../commands/DistributeDatasetEntriesCommand";
|
|
23
27
|
import { GetCelebrityInfoCommandInput, GetCelebrityInfoCommandOutput } from "../commands/GetCelebrityInfoCommand";
|
|
24
28
|
import { GetCelebrityRecognitionCommandInput, GetCelebrityRecognitionCommandOutput } from "../commands/GetCelebrityRecognitionCommand";
|
|
25
29
|
import { GetContentModerationCommandInput, GetContentModerationCommandOutput } from "../commands/GetContentModerationCommand";
|
|
@@ -31,6 +35,8 @@ import { GetSegmentDetectionCommandInput, GetSegmentDetectionCommandOutput } fro
|
|
|
31
35
|
import { GetTextDetectionCommandInput, GetTextDetectionCommandOutput } from "../commands/GetTextDetectionCommand";
|
|
32
36
|
import { IndexFacesCommandInput, IndexFacesCommandOutput } from "../commands/IndexFacesCommand";
|
|
33
37
|
import { ListCollectionsCommandInput, ListCollectionsCommandOutput } from "../commands/ListCollectionsCommand";
|
|
38
|
+
import { ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput } from "../commands/ListDatasetEntriesCommand";
|
|
39
|
+
import { ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput } from "../commands/ListDatasetLabelsCommand";
|
|
34
40
|
import { ListFacesCommandInput, ListFacesCommandOutput } from "../commands/ListFacesCommand";
|
|
35
41
|
import { ListStreamProcessorsCommandInput, ListStreamProcessorsCommandOutput } from "../commands/ListStreamProcessorsCommand";
|
|
36
42
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -51,17 +57,21 @@ import { StopProjectVersionCommandInput, StopProjectVersionCommandOutput } from
|
|
|
51
57
|
import { StopStreamProcessorCommandInput, StopStreamProcessorCommandOutput } from "../commands/StopStreamProcessorCommand";
|
|
52
58
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
53
59
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
60
|
+
import { UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput } from "../commands/UpdateDatasetEntriesCommand";
|
|
54
61
|
export declare const serializeAws_json1_1CompareFacesCommand: (input: CompareFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
62
|
export declare const serializeAws_json1_1CreateCollectionCommand: (input: CreateCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
export declare const serializeAws_json1_1CreateDatasetCommand: (input: CreateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
64
|
export declare const serializeAws_json1_1CreateProjectCommand: (input: CreateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
65
|
export declare const serializeAws_json1_1CreateProjectVersionCommand: (input: CreateProjectVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
66
|
export declare const serializeAws_json1_1CreateStreamProcessorCommand: (input: CreateStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
67
|
export declare const serializeAws_json1_1DeleteCollectionCommand: (input: DeleteCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
export declare const serializeAws_json1_1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
69
|
export declare const serializeAws_json1_1DeleteFacesCommand: (input: DeleteFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
70
|
export declare const serializeAws_json1_1DeleteProjectCommand: (input: DeleteProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
71
|
export declare const serializeAws_json1_1DeleteProjectVersionCommand: (input: DeleteProjectVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
72
|
export declare const serializeAws_json1_1DeleteStreamProcessorCommand: (input: DeleteStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
73
|
export declare const serializeAws_json1_1DescribeCollectionCommand: (input: DescribeCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_json1_1DescribeDatasetCommand: (input: DescribeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
75
|
export declare const serializeAws_json1_1DescribeProjectsCommand: (input: DescribeProjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
76
|
export declare const serializeAws_json1_1DescribeProjectVersionsCommand: (input: DescribeProjectVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
77
|
export declare const serializeAws_json1_1DescribeStreamProcessorCommand: (input: DescribeStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -71,6 +81,7 @@ export declare const serializeAws_json1_1DetectLabelsCommand: (input: DetectLabe
|
|
|
71
81
|
export declare const serializeAws_json1_1DetectModerationLabelsCommand: (input: DetectModerationLabelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
82
|
export declare const serializeAws_json1_1DetectProtectiveEquipmentCommand: (input: DetectProtectiveEquipmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
83
|
export declare const serializeAws_json1_1DetectTextCommand: (input: DetectTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
export declare const serializeAws_json1_1DistributeDatasetEntriesCommand: (input: DistributeDatasetEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
85
|
export declare const serializeAws_json1_1GetCelebrityInfoCommand: (input: GetCelebrityInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
86
|
export declare const serializeAws_json1_1GetCelebrityRecognitionCommand: (input: GetCelebrityRecognitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
87
|
export declare const serializeAws_json1_1GetContentModerationCommand: (input: GetContentModerationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -82,6 +93,8 @@ export declare const serializeAws_json1_1GetSegmentDetectionCommand: (input: Get
|
|
|
82
93
|
export declare const serializeAws_json1_1GetTextDetectionCommand: (input: GetTextDetectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
94
|
export declare const serializeAws_json1_1IndexFacesCommand: (input: IndexFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
95
|
export declare const serializeAws_json1_1ListCollectionsCommand: (input: ListCollectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
export declare const serializeAws_json1_1ListDatasetEntriesCommand: (input: ListDatasetEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
+
export declare const serializeAws_json1_1ListDatasetLabelsCommand: (input: ListDatasetLabelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
98
|
export declare const serializeAws_json1_1ListFacesCommand: (input: ListFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
99
|
export declare const serializeAws_json1_1ListStreamProcessorsCommand: (input: ListStreamProcessorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
100
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -102,17 +115,21 @@ export declare const serializeAws_json1_1StopProjectVersionCommand: (input: Stop
|
|
|
102
115
|
export declare const serializeAws_json1_1StopStreamProcessorCommand: (input: StopStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
116
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
117
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1UpdateDatasetEntriesCommand: (input: UpdateDatasetEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
119
|
export declare const deserializeAws_json1_1CompareFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CompareFacesCommandOutput>;
|
|
106
120
|
export declare const deserializeAws_json1_1CreateCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCollectionCommandOutput>;
|
|
121
|
+
export declare const deserializeAws_json1_1CreateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetCommandOutput>;
|
|
107
122
|
export declare const deserializeAws_json1_1CreateProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectCommandOutput>;
|
|
108
123
|
export declare const deserializeAws_json1_1CreateProjectVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectVersionCommandOutput>;
|
|
109
124
|
export declare const deserializeAws_json1_1CreateStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamProcessorCommandOutput>;
|
|
110
125
|
export declare const deserializeAws_json1_1DeleteCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCollectionCommandOutput>;
|
|
126
|
+
export declare const deserializeAws_json1_1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
|
|
111
127
|
export declare const deserializeAws_json1_1DeleteFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFacesCommandOutput>;
|
|
112
128
|
export declare const deserializeAws_json1_1DeleteProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectCommandOutput>;
|
|
113
129
|
export declare const deserializeAws_json1_1DeleteProjectVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectVersionCommandOutput>;
|
|
114
130
|
export declare const deserializeAws_json1_1DeleteStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStreamProcessorCommandOutput>;
|
|
115
131
|
export declare const deserializeAws_json1_1DescribeCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCollectionCommandOutput>;
|
|
132
|
+
export declare const deserializeAws_json1_1DescribeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDatasetCommandOutput>;
|
|
116
133
|
export declare const deserializeAws_json1_1DescribeProjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProjectsCommandOutput>;
|
|
117
134
|
export declare const deserializeAws_json1_1DescribeProjectVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProjectVersionsCommandOutput>;
|
|
118
135
|
export declare const deserializeAws_json1_1DescribeStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStreamProcessorCommandOutput>;
|
|
@@ -122,6 +139,7 @@ export declare const deserializeAws_json1_1DetectLabelsCommand: (output: __HttpR
|
|
|
122
139
|
export declare const deserializeAws_json1_1DetectModerationLabelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectModerationLabelsCommandOutput>;
|
|
123
140
|
export declare const deserializeAws_json1_1DetectProtectiveEquipmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectProtectiveEquipmentCommandOutput>;
|
|
124
141
|
export declare const deserializeAws_json1_1DetectTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectTextCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_json1_1DistributeDatasetEntriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DistributeDatasetEntriesCommandOutput>;
|
|
125
143
|
export declare const deserializeAws_json1_1GetCelebrityInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCelebrityInfoCommandOutput>;
|
|
126
144
|
export declare const deserializeAws_json1_1GetCelebrityRecognitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCelebrityRecognitionCommandOutput>;
|
|
127
145
|
export declare const deserializeAws_json1_1GetContentModerationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContentModerationCommandOutput>;
|
|
@@ -133,6 +151,8 @@ export declare const deserializeAws_json1_1GetSegmentDetectionCommand: (output:
|
|
|
133
151
|
export declare const deserializeAws_json1_1GetTextDetectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTextDetectionCommandOutput>;
|
|
134
152
|
export declare const deserializeAws_json1_1IndexFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IndexFacesCommandOutput>;
|
|
135
153
|
export declare const deserializeAws_json1_1ListCollectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollectionsCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_1ListDatasetEntriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetEntriesCommandOutput>;
|
|
155
|
+
export declare const deserializeAws_json1_1ListDatasetLabelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetLabelsCommandOutput>;
|
|
136
156
|
export declare const deserializeAws_json1_1ListFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFacesCommandOutput>;
|
|
137
157
|
export declare const deserializeAws_json1_1ListStreamProcessorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamProcessorsCommandOutput>;
|
|
138
158
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
@@ -153,3 +173,4 @@ export declare const deserializeAws_json1_1StopProjectVersionCommand: (output: _
|
|
|
153
173
|
export declare const deserializeAws_json1_1StopStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopStreamProcessorCommandOutput>;
|
|
154
174
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
155
175
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
176
|
+
export declare const deserializeAws_json1_1UpdateDatasetEntriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatasetEntriesCommandOutput>;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: RekognitionClientConfig) => {
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: RekognitionClientConfig) => {
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: RekognitionClientConfig) => {
|
|
|
16
16
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
18
|
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
serviceId: string;
|
|
20
22
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
21
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rekognition",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rekognition Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.43.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,35 +21,35 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.43.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.40.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.40.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.40.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.40.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.41.0",
|
|
42
|
+
"@aws-sdk/types": "3.40.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.40.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.40.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.40.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
|
-
"@aws-sdk/util-waiter": "3.
|
|
52
|
+
"@aws-sdk/util-waiter": "3.40.0",
|
|
53
53
|
"tslib": "^2.3.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|