@aws-sdk/client-rekognition 3.145.0 → 3.154.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 +27 -0
- package/README.md +25 -0
- package/dist-cjs/Rekognition.js +60 -0
- package/dist-cjs/commands/CopyProjectVersionCommand.js +36 -0
- package/dist-cjs/commands/DeleteProjectPolicyCommand.js +36 -0
- package/dist-cjs/commands/ListProjectPoliciesCommand.js +36 -0
- package/dist-cjs/commands/PutProjectPolicyCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +111 -40
- package/dist-cjs/pagination/ListProjectPoliciesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +381 -3
- package/dist-es/Rekognition.js +60 -0
- package/dist-es/commands/CopyProjectVersionCommand.js +39 -0
- package/dist-es/commands/DeleteProjectPolicyCommand.js +39 -0
- package/dist-es/commands/ListProjectPoliciesCommand.js +39 -0
- package/dist-es/commands/PutProjectPolicyCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +86 -44
- package/dist-es/pagination/ListProjectPoliciesPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +460 -1
- package/dist-types/Rekognition.d.ts +97 -4
- package/dist-types/RekognitionClient.d.ts +31 -2
- package/dist-types/commands/CopyProjectVersionCommand.d.ts +56 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +5 -4
- package/dist-types/commands/DeleteProjectPolicyCommand.d.ts +36 -0
- package/dist-types/commands/ListProjectPoliciesCommand.d.ts +36 -0
- package/dist-types/commands/PutProjectPolicyCommand.d.ts +51 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +329 -88
- package/dist-types/pagination/ListProjectPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +12 -0
- package/dist-types/ts3.4/Rekognition.d.ts +20 -0
- package/dist-types/ts3.4/RekognitionClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/CopyProjectVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteProjectPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListProjectPoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutProjectPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +169 -51
- package/dist-types/ts3.4/pagination/ListProjectPoliciesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -1089,38 +1089,100 @@ export declare enum ContentModerationSortBy {
|
|
|
1089
1089
|
NAME = "NAME",
|
|
1090
1090
|
TIMESTAMP = "TIMESTAMP"
|
|
1091
1091
|
}
|
|
1092
|
-
|
|
1092
|
+
/**
|
|
1093
|
+
* <p>The S3 bucket and folder location where training output is placed.</p>
|
|
1094
|
+
*/
|
|
1095
|
+
export interface OutputConfig {
|
|
1093
1096
|
/**
|
|
1094
|
-
* <p>
|
|
1097
|
+
* <p>The S3 bucket where training output is placed.</p>
|
|
1095
1098
|
*/
|
|
1096
|
-
|
|
1099
|
+
S3Bucket?: string;
|
|
1097
1100
|
/**
|
|
1098
|
-
* <p>
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
+
* <p>The prefix applied to the training output files. </p>
|
|
1102
|
+
*/
|
|
1103
|
+
S3KeyPrefix?: string;
|
|
1104
|
+
}
|
|
1105
|
+
export interface CopyProjectVersionRequest {
|
|
1106
|
+
/**
|
|
1107
|
+
* <p>The ARN of the source project in the trusting AWS account.</p>
|
|
1108
|
+
*/
|
|
1109
|
+
SourceProjectArn: string | undefined;
|
|
1110
|
+
/**
|
|
1111
|
+
* <p>The ARN of the model version in the source project that you want to copy to a destination project.</p>
|
|
1112
|
+
*/
|
|
1113
|
+
SourceProjectVersionArn: string | undefined;
|
|
1114
|
+
/**
|
|
1115
|
+
* <p>The ARN of the project in the trusted AWS account that you want to copy the model version to. </p>
|
|
1116
|
+
*/
|
|
1117
|
+
DestinationProjectArn: string | undefined;
|
|
1118
|
+
/**
|
|
1119
|
+
* <p>A name for the version of the model that's copied to the destination project.</p>
|
|
1120
|
+
*/
|
|
1121
|
+
VersionName: string | undefined;
|
|
1122
|
+
/**
|
|
1123
|
+
* <p>The S3 bucket and folder location where the training output for the source model version is placed.</p>
|
|
1124
|
+
*/
|
|
1125
|
+
OutputConfig: OutputConfig | undefined;
|
|
1126
|
+
/**
|
|
1127
|
+
* <p>The key-value tags to assign to the model version. </p>
|
|
1101
1128
|
*/
|
|
1102
1129
|
Tags?: Record<string, string>;
|
|
1130
|
+
/**
|
|
1131
|
+
* <p>The identifier for your AWS Key Management Service key (AWS KMS key).
|
|
1132
|
+
* You can supply the Amazon Resource Name (ARN) of your KMS key, the ID of your KMS key,
|
|
1133
|
+
* an alias for your KMS key, or an alias ARN.
|
|
1134
|
+
* The key is used to encrypt training results
|
|
1135
|
+
* and manifest files written to the output Amazon S3 bucket (<code>OutputConfig</code>).</p>
|
|
1136
|
+
* <p>If you choose to use your own KMS key, you need the following permissions on the KMS key.</p>
|
|
1137
|
+
* <ul>
|
|
1138
|
+
* <li>
|
|
1139
|
+
* <p>kms:CreateGrant</p>
|
|
1140
|
+
* </li>
|
|
1141
|
+
* <li>
|
|
1142
|
+
* <p>kms:DescribeKey</p>
|
|
1143
|
+
* </li>
|
|
1144
|
+
* <li>
|
|
1145
|
+
* <p>kms:GenerateDataKey</p>
|
|
1146
|
+
* </li>
|
|
1147
|
+
* <li>
|
|
1148
|
+
* <p>kms:Decrypt</p>
|
|
1149
|
+
* </li>
|
|
1150
|
+
* </ul>
|
|
1151
|
+
* <p>If you don't specify a value for <code>KmsKeyId</code>, images copied into the service are encrypted
|
|
1152
|
+
* using a key that AWS owns and manages.</p>
|
|
1153
|
+
*/
|
|
1154
|
+
KmsKeyId?: string;
|
|
1103
1155
|
}
|
|
1104
|
-
export interface
|
|
1156
|
+
export interface CopyProjectVersionResponse {
|
|
1105
1157
|
/**
|
|
1106
|
-
* <p>
|
|
1158
|
+
* <p>The ARN of the copied model version in the destination project. </p>
|
|
1107
1159
|
*/
|
|
1108
|
-
|
|
1160
|
+
ProjectVersionArn?: string;
|
|
1161
|
+
}
|
|
1162
|
+
/**
|
|
1163
|
+
* <p>An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
|
|
1164
|
+
* (<code>StartLabelDetection</code>, for example) will raise a <code>LimitExceededException</code> exception (HTTP status code: 400) until
|
|
1165
|
+
* the number of concurrently running jobs is below the Amazon Rekognition service limit. </p>
|
|
1166
|
+
*/
|
|
1167
|
+
export declare class LimitExceededException extends __BaseException {
|
|
1168
|
+
readonly name: "LimitExceededException";
|
|
1169
|
+
readonly $fault: "client";
|
|
1170
|
+
Message?: string;
|
|
1171
|
+
Code?: string;
|
|
1109
1172
|
/**
|
|
1110
|
-
* <p>
|
|
1111
|
-
* your resources. </p>
|
|
1173
|
+
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
1112
1174
|
*/
|
|
1113
|
-
|
|
1175
|
+
Logref?: string;
|
|
1114
1176
|
/**
|
|
1115
|
-
*
|
|
1177
|
+
* @internal
|
|
1116
1178
|
*/
|
|
1117
|
-
|
|
1179
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1118
1180
|
}
|
|
1119
1181
|
/**
|
|
1120
|
-
* <p>
|
|
1182
|
+
* <p>The specified resource is already being used.</p>
|
|
1121
1183
|
*/
|
|
1122
|
-
export declare class
|
|
1123
|
-
readonly name: "
|
|
1184
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
1185
|
+
readonly name: "ResourceInUseException";
|
|
1124
1186
|
readonly $fault: "client";
|
|
1125
1187
|
Message?: string;
|
|
1126
1188
|
Code?: string;
|
|
@@ -1131,7 +1193,24 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
1131
1193
|
/**
|
|
1132
1194
|
* @internal
|
|
1133
1195
|
*/
|
|
1134
|
-
constructor(opts: __ExceptionOptionType<
|
|
1196
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
1197
|
+
}
|
|
1198
|
+
/**
|
|
1199
|
+
* <p>The resource specified in the request cannot be found.</p>
|
|
1200
|
+
*/
|
|
1201
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
1202
|
+
readonly name: "ResourceNotFoundException";
|
|
1203
|
+
readonly $fault: "client";
|
|
1204
|
+
Message?: string;
|
|
1205
|
+
Code?: string;
|
|
1206
|
+
/**
|
|
1207
|
+
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
1208
|
+
*/
|
|
1209
|
+
Logref?: string;
|
|
1210
|
+
/**
|
|
1211
|
+
* @internal
|
|
1212
|
+
*/
|
|
1213
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1135
1214
|
}
|
|
1136
1215
|
/**
|
|
1137
1216
|
* <p></p>
|
|
@@ -1154,6 +1233,50 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
1154
1233
|
*/
|
|
1155
1234
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1156
1235
|
}
|
|
1236
|
+
export interface CreateCollectionRequest {
|
|
1237
|
+
/**
|
|
1238
|
+
* <p>ID for the collection that you are creating.</p>
|
|
1239
|
+
*/
|
|
1240
|
+
CollectionId: string | undefined;
|
|
1241
|
+
/**
|
|
1242
|
+
* <p>
|
|
1243
|
+
* A set of tags (key-value pairs) that you want to attach to the collection.
|
|
1244
|
+
* </p>
|
|
1245
|
+
*/
|
|
1246
|
+
Tags?: Record<string, string>;
|
|
1247
|
+
}
|
|
1248
|
+
export interface CreateCollectionResponse {
|
|
1249
|
+
/**
|
|
1250
|
+
* <p>HTTP status code indicating the result of the operation.</p>
|
|
1251
|
+
*/
|
|
1252
|
+
StatusCode?: number;
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>Amazon Resource Name (ARN) of the collection. You can use this to manage permissions on
|
|
1255
|
+
* your resources. </p>
|
|
1256
|
+
*/
|
|
1257
|
+
CollectionArn?: string;
|
|
1258
|
+
/**
|
|
1259
|
+
* <p>Version number of the face detection model associated with the collection you are creating.</p>
|
|
1260
|
+
*/
|
|
1261
|
+
FaceModelVersion?: string;
|
|
1262
|
+
}
|
|
1263
|
+
/**
|
|
1264
|
+
* <p>A resource with the specified ID already exists.</p>
|
|
1265
|
+
*/
|
|
1266
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
1267
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
1268
|
+
readonly $fault: "client";
|
|
1269
|
+
Message?: string;
|
|
1270
|
+
Code?: string;
|
|
1271
|
+
/**
|
|
1272
|
+
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
1273
|
+
*/
|
|
1274
|
+
Logref?: string;
|
|
1275
|
+
/**
|
|
1276
|
+
* @internal
|
|
1277
|
+
*/
|
|
1278
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
1279
|
+
}
|
|
1157
1280
|
/**
|
|
1158
1281
|
* <p>
|
|
1159
1282
|
* The source that Amazon Rekognition Custom Labels uses to create a dataset. To
|
|
@@ -1215,42 +1338,6 @@ export interface CreateDatasetResponse {
|
|
|
1215
1338
|
*/
|
|
1216
1339
|
DatasetArn?: string;
|
|
1217
1340
|
}
|
|
1218
|
-
/**
|
|
1219
|
-
* <p>An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
|
|
1220
|
-
* (<code>StartLabelDetection</code>, for example) will raise a <code>LimitExceededException</code> exception (HTTP status code: 400) until
|
|
1221
|
-
* the number of concurrently running jobs is below the Amazon Rekognition service limit. </p>
|
|
1222
|
-
*/
|
|
1223
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1224
|
-
readonly name: "LimitExceededException";
|
|
1225
|
-
readonly $fault: "client";
|
|
1226
|
-
Message?: string;
|
|
1227
|
-
Code?: string;
|
|
1228
|
-
/**
|
|
1229
|
-
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
1230
|
-
*/
|
|
1231
|
-
Logref?: string;
|
|
1232
|
-
/**
|
|
1233
|
-
* @internal
|
|
1234
|
-
*/
|
|
1235
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1236
|
-
}
|
|
1237
|
-
/**
|
|
1238
|
-
* <p>The resource specified in the request cannot be found.</p>
|
|
1239
|
-
*/
|
|
1240
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
1241
|
-
readonly name: "ResourceNotFoundException";
|
|
1242
|
-
readonly $fault: "client";
|
|
1243
|
-
Message?: string;
|
|
1244
|
-
Code?: string;
|
|
1245
|
-
/**
|
|
1246
|
-
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
1247
|
-
*/
|
|
1248
|
-
Logref?: string;
|
|
1249
|
-
/**
|
|
1250
|
-
* @internal
|
|
1251
|
-
*/
|
|
1252
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1253
|
-
}
|
|
1254
1341
|
export interface CreateProjectRequest {
|
|
1255
1342
|
/**
|
|
1256
1343
|
* <p>The name of the project to create.</p>
|
|
@@ -1264,36 +1351,6 @@ export interface CreateProjectResponse {
|
|
|
1264
1351
|
*/
|
|
1265
1352
|
ProjectArn?: string;
|
|
1266
1353
|
}
|
|
1267
|
-
/**
|
|
1268
|
-
* <p>The specified resource is already being used.</p>
|
|
1269
|
-
*/
|
|
1270
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
1271
|
-
readonly name: "ResourceInUseException";
|
|
1272
|
-
readonly $fault: "client";
|
|
1273
|
-
Message?: string;
|
|
1274
|
-
Code?: string;
|
|
1275
|
-
/**
|
|
1276
|
-
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
1277
|
-
*/
|
|
1278
|
-
Logref?: string;
|
|
1279
|
-
/**
|
|
1280
|
-
* @internal
|
|
1281
|
-
*/
|
|
1282
|
-
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
1283
|
-
}
|
|
1284
|
-
/**
|
|
1285
|
-
* <p>The S3 bucket and folder location where training output is placed.</p>
|
|
1286
|
-
*/
|
|
1287
|
-
export interface OutputConfig {
|
|
1288
|
-
/**
|
|
1289
|
-
* <p>The S3 bucket where training output is placed.</p>
|
|
1290
|
-
*/
|
|
1291
|
-
S3Bucket?: string;
|
|
1292
|
-
/**
|
|
1293
|
-
* <p>The prefix applied to the training output files. </p>
|
|
1294
|
-
*/
|
|
1295
|
-
S3KeyPrefix?: string;
|
|
1296
|
-
}
|
|
1297
1354
|
/**
|
|
1298
1355
|
* <p>The dataset used for testing. Optionally, if <code>AutoCreate</code> is set, Amazon Rekognition Custom Labels uses the
|
|
1299
1356
|
* training dataset to create a test dataset with a temporary split of the training dataset. </p>
|
|
@@ -1921,6 +1978,39 @@ export interface DeleteProjectResponse {
|
|
|
1921
1978
|
*/
|
|
1922
1979
|
Status?: ProjectStatus | string;
|
|
1923
1980
|
}
|
|
1981
|
+
export interface DeleteProjectPolicyRequest {
|
|
1982
|
+
/**
|
|
1983
|
+
* <p>The Amazon Resource Name (ARN) of the project that the project policy you want to delete is attached to.</p>
|
|
1984
|
+
*/
|
|
1985
|
+
ProjectArn: string | undefined;
|
|
1986
|
+
/**
|
|
1987
|
+
* <p>The name of the policy that you want to delete.</p>
|
|
1988
|
+
*/
|
|
1989
|
+
PolicyName: string | undefined;
|
|
1990
|
+
/**
|
|
1991
|
+
* <p>The ID of the project policy revision that you want to delete.</p>
|
|
1992
|
+
*/
|
|
1993
|
+
PolicyRevisionId?: string;
|
|
1994
|
+
}
|
|
1995
|
+
export interface DeleteProjectPolicyResponse {
|
|
1996
|
+
}
|
|
1997
|
+
/**
|
|
1998
|
+
* <p>The supplied revision id for the project policy is invalid.</p>
|
|
1999
|
+
*/
|
|
2000
|
+
export declare class InvalidPolicyRevisionIdException extends __BaseException {
|
|
2001
|
+
readonly name: "InvalidPolicyRevisionIdException";
|
|
2002
|
+
readonly $fault: "client";
|
|
2003
|
+
Message?: string;
|
|
2004
|
+
Code?: string;
|
|
2005
|
+
/**
|
|
2006
|
+
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
2007
|
+
*/
|
|
2008
|
+
Logref?: string;
|
|
2009
|
+
/**
|
|
2010
|
+
* @internal
|
|
2011
|
+
*/
|
|
2012
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyRevisionIdException, __BaseException>);
|
|
2013
|
+
}
|
|
1924
2014
|
export interface DeleteProjectVersionRequest {
|
|
1925
2015
|
/**
|
|
1926
2016
|
* <p>The Amazon Resource Name (ARN) of the model version that you want to delete.</p>
|
|
@@ -1928,6 +2018,9 @@ export interface DeleteProjectVersionRequest {
|
|
|
1928
2018
|
ProjectVersionArn: string | undefined;
|
|
1929
2019
|
}
|
|
1930
2020
|
export declare enum ProjectVersionStatus {
|
|
2021
|
+
COPYING_COMPLETED = "COPYING_COMPLETED",
|
|
2022
|
+
COPYING_FAILED = "COPYING_FAILED",
|
|
2023
|
+
COPYING_IN_PROGRESS = "COPYING_IN_PROGRESS",
|
|
1931
2024
|
DELETING = "DELETING",
|
|
1932
2025
|
FAILED = "FAILED",
|
|
1933
2026
|
RUNNING = "RUNNING",
|
|
@@ -2247,6 +2340,10 @@ export interface ProjectVersionDescription {
|
|
|
2247
2340
|
* For more information, see <a>StartProjectVersion</a>.</p>
|
|
2248
2341
|
*/
|
|
2249
2342
|
MaxInferenceUnits?: number;
|
|
2343
|
+
/**
|
|
2344
|
+
* <p>If the model version was copied from a different project, <code>SourceProjectVersionArn</code> contains the ARN of the source model version. </p>
|
|
2345
|
+
*/
|
|
2346
|
+
SourceProjectVersionArn?: string;
|
|
2250
2347
|
}
|
|
2251
2348
|
export interface DescribeProjectVersionsResponse {
|
|
2252
2349
|
/**
|
|
@@ -4031,6 +4128,66 @@ export interface ListFacesResponse {
|
|
|
4031
4128
|
*/
|
|
4032
4129
|
FaceModelVersion?: string;
|
|
4033
4130
|
}
|
|
4131
|
+
export interface ListProjectPoliciesRequest {
|
|
4132
|
+
/**
|
|
4133
|
+
* <p>The ARN of the project for which you want to list the project policies.</p>
|
|
4134
|
+
*/
|
|
4135
|
+
ProjectArn: string | undefined;
|
|
4136
|
+
/**
|
|
4137
|
+
* <p>If the previous response was incomplete (because there is more results to retrieve),
|
|
4138
|
+
* Amazon Rekognition Custom Labels returns a pagination token in the response. You can use this pagination token
|
|
4139
|
+
* to retrieve the next set of results. </p>
|
|
4140
|
+
*/
|
|
4141
|
+
NextToken?: string;
|
|
4142
|
+
/**
|
|
4143
|
+
* <p>The maximum number of results to return per paginated call. The largest value you can
|
|
4144
|
+
* specify is 5. If you specify a value greater than 5, a ValidationException error
|
|
4145
|
+
* occurs. The default value is 5. </p>
|
|
4146
|
+
*/
|
|
4147
|
+
MaxResults?: number;
|
|
4148
|
+
}
|
|
4149
|
+
/**
|
|
4150
|
+
* <p>Describes a project policy in the response from <a>ListProjectPolicies</a>. </p>
|
|
4151
|
+
*
|
|
4152
|
+
* <p> </p>
|
|
4153
|
+
*/
|
|
4154
|
+
export interface ProjectPolicy {
|
|
4155
|
+
/**
|
|
4156
|
+
* <p>The Amazon Resource Name (ARN) of the project to which the project policy is attached.</p>
|
|
4157
|
+
*/
|
|
4158
|
+
ProjectArn?: string;
|
|
4159
|
+
/**
|
|
4160
|
+
* <p>The name of the project policy.</p>
|
|
4161
|
+
*/
|
|
4162
|
+
PolicyName?: string;
|
|
4163
|
+
/**
|
|
4164
|
+
* <p>The revision ID of the project policy.</p>
|
|
4165
|
+
*/
|
|
4166
|
+
PolicyRevisionId?: string;
|
|
4167
|
+
/**
|
|
4168
|
+
* <p>The JSON document for the project policy.</p>
|
|
4169
|
+
*/
|
|
4170
|
+
PolicyDocument?: string;
|
|
4171
|
+
/**
|
|
4172
|
+
* <p>The Unix datetime for the creation of the project policy.</p>
|
|
4173
|
+
*/
|
|
4174
|
+
CreationTimestamp?: Date;
|
|
4175
|
+
/**
|
|
4176
|
+
* <p>The Unix datetime for when the project policy was last updated. </p>
|
|
4177
|
+
*/
|
|
4178
|
+
LastUpdatedTimestamp?: Date;
|
|
4179
|
+
}
|
|
4180
|
+
export interface ListProjectPoliciesResponse {
|
|
4181
|
+
/**
|
|
4182
|
+
* <p>A list of project policies attached to the project.</p>
|
|
4183
|
+
*/
|
|
4184
|
+
ProjectPolicies?: ProjectPolicy[];
|
|
4185
|
+
/**
|
|
4186
|
+
* <p>If the response is truncated, Amazon Rekognition returns this token that you can use in the
|
|
4187
|
+
* subsequent request to retrieve the next set of project policies.</p>
|
|
4188
|
+
*/
|
|
4189
|
+
NextToken?: string;
|
|
4190
|
+
}
|
|
4034
4191
|
export interface ListStreamProcessorsRequest {
|
|
4035
4192
|
/**
|
|
4036
4193
|
* <p>If the previous response was incomplete (because there are more stream processors to retrieve), Amazon Rekognition Video
|
|
@@ -4085,6 +4242,24 @@ export interface ListTagsForResourceResponse {
|
|
|
4085
4242
|
*/
|
|
4086
4243
|
Tags?: Record<string, string>;
|
|
4087
4244
|
}
|
|
4245
|
+
/**
|
|
4246
|
+
* <p>The format of the project policy document that you supplied to
|
|
4247
|
+
* <code>PutProjectPolicy</code> is incorrect. </p>
|
|
4248
|
+
*/
|
|
4249
|
+
export declare class MalformedPolicyDocumentException extends __BaseException {
|
|
4250
|
+
readonly name: "MalformedPolicyDocumentException";
|
|
4251
|
+
readonly $fault: "client";
|
|
4252
|
+
Message?: string;
|
|
4253
|
+
Code?: string;
|
|
4254
|
+
/**
|
|
4255
|
+
* <p>A universally unique identifier (UUID) for the request.</p>
|
|
4256
|
+
*/
|
|
4257
|
+
Logref?: string;
|
|
4258
|
+
/**
|
|
4259
|
+
* @internal
|
|
4260
|
+
*/
|
|
4261
|
+
constructor(opts: __ExceptionOptionType<MalformedPolicyDocumentException, __BaseException>);
|
|
4262
|
+
}
|
|
4088
4263
|
/**
|
|
4089
4264
|
* <p>The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the completion status of a video analysis operation. For more information, see
|
|
4090
4265
|
* <a href="https://docs.aws.amazon.com/rekognition/latest/dg/api-video.html">Calling Amazon Rekognition Video operations</a>. Note that the Amazon SNS topic must have a topic name that begins with <i>AmazonRekognition</i> if you are using the AmazonRekognitionServiceRole permissions policy to access the topic.
|
|
@@ -4100,6 +4275,36 @@ export interface NotificationChannel {
|
|
|
4100
4275
|
*/
|
|
4101
4276
|
RoleArn: string | undefined;
|
|
4102
4277
|
}
|
|
4278
|
+
export interface PutProjectPolicyRequest {
|
|
4279
|
+
/**
|
|
4280
|
+
* <p>The Amazon Resource Name (ARN) of the project that the project policy is attached to.</p>
|
|
4281
|
+
*/
|
|
4282
|
+
ProjectArn: string | undefined;
|
|
4283
|
+
/**
|
|
4284
|
+
* <p>A name for the policy.</p>
|
|
4285
|
+
*/
|
|
4286
|
+
PolicyName: string | undefined;
|
|
4287
|
+
/**
|
|
4288
|
+
* <p>The revision ID for the Project Policy. Each time you modify a policy, Amazon Rekognition Custom Labels
|
|
4289
|
+
* generates and assigns a new <code>PolicyRevisionId</code> and then deletes the previous version of the
|
|
4290
|
+
* policy.</p>
|
|
4291
|
+
*/
|
|
4292
|
+
PolicyRevisionId?: string;
|
|
4293
|
+
/**
|
|
4294
|
+
* <p>A resource policy to add to the model. The policy is a JSON structure that contains
|
|
4295
|
+
* one or more statements that define the policy.
|
|
4296
|
+
* The policy must follow the IAM syntax. For
|
|
4297
|
+
* more information about the contents of a JSON policy document, see
|
|
4298
|
+
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies.html">IAM JSON policy reference</a>. </p>
|
|
4299
|
+
*/
|
|
4300
|
+
PolicyDocument: string | undefined;
|
|
4301
|
+
}
|
|
4302
|
+
export interface PutProjectPolicyResponse {
|
|
4303
|
+
/**
|
|
4304
|
+
* <p>The ID of the project policy.</p>
|
|
4305
|
+
*/
|
|
4306
|
+
PolicyRevisionId?: string;
|
|
4307
|
+
}
|
|
4103
4308
|
export interface RecognizeCelebritiesRequest {
|
|
4104
4309
|
/**
|
|
4105
4310
|
* <p>The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call
|
|
@@ -4979,6 +5184,18 @@ export declare const ModerationLabelFilterSensitiveLog: (obj: ModerationLabel) =
|
|
|
4979
5184
|
* @internal
|
|
4980
5185
|
*/
|
|
4981
5186
|
export declare const ContentModerationDetectionFilterSensitiveLog: (obj: ContentModerationDetection) => any;
|
|
5187
|
+
/**
|
|
5188
|
+
* @internal
|
|
5189
|
+
*/
|
|
5190
|
+
export declare const OutputConfigFilterSensitiveLog: (obj: OutputConfig) => any;
|
|
5191
|
+
/**
|
|
5192
|
+
* @internal
|
|
5193
|
+
*/
|
|
5194
|
+
export declare const CopyProjectVersionRequestFilterSensitiveLog: (obj: CopyProjectVersionRequest) => any;
|
|
5195
|
+
/**
|
|
5196
|
+
* @internal
|
|
5197
|
+
*/
|
|
5198
|
+
export declare const CopyProjectVersionResponseFilterSensitiveLog: (obj: CopyProjectVersionResponse) => any;
|
|
4982
5199
|
/**
|
|
4983
5200
|
* @internal
|
|
4984
5201
|
*/
|
|
@@ -5007,10 +5224,6 @@ export declare const CreateProjectRequestFilterSensitiveLog: (obj: CreateProject
|
|
|
5007
5224
|
* @internal
|
|
5008
5225
|
*/
|
|
5009
5226
|
export declare const CreateProjectResponseFilterSensitiveLog: (obj: CreateProjectResponse) => any;
|
|
5010
|
-
/**
|
|
5011
|
-
* @internal
|
|
5012
|
-
*/
|
|
5013
|
-
export declare const OutputConfigFilterSensitiveLog: (obj: OutputConfig) => any;
|
|
5014
5227
|
/**
|
|
5015
5228
|
* @internal
|
|
5016
5229
|
*/
|
|
@@ -5143,6 +5356,14 @@ export declare const DeleteProjectRequestFilterSensitiveLog: (obj: DeleteProject
|
|
|
5143
5356
|
* @internal
|
|
5144
5357
|
*/
|
|
5145
5358
|
export declare const DeleteProjectResponseFilterSensitiveLog: (obj: DeleteProjectResponse) => any;
|
|
5359
|
+
/**
|
|
5360
|
+
* @internal
|
|
5361
|
+
*/
|
|
5362
|
+
export declare const DeleteProjectPolicyRequestFilterSensitiveLog: (obj: DeleteProjectPolicyRequest) => any;
|
|
5363
|
+
/**
|
|
5364
|
+
* @internal
|
|
5365
|
+
*/
|
|
5366
|
+
export declare const DeleteProjectPolicyResponseFilterSensitiveLog: (obj: DeleteProjectPolicyResponse) => any;
|
|
5146
5367
|
/**
|
|
5147
5368
|
* @internal
|
|
5148
5369
|
*/
|
|
@@ -5511,6 +5732,18 @@ export declare const ListFacesRequestFilterSensitiveLog: (obj: ListFacesRequest)
|
|
|
5511
5732
|
* @internal
|
|
5512
5733
|
*/
|
|
5513
5734
|
export declare const ListFacesResponseFilterSensitiveLog: (obj: ListFacesResponse) => any;
|
|
5735
|
+
/**
|
|
5736
|
+
* @internal
|
|
5737
|
+
*/
|
|
5738
|
+
export declare const ListProjectPoliciesRequestFilterSensitiveLog: (obj: ListProjectPoliciesRequest) => any;
|
|
5739
|
+
/**
|
|
5740
|
+
* @internal
|
|
5741
|
+
*/
|
|
5742
|
+
export declare const ProjectPolicyFilterSensitiveLog: (obj: ProjectPolicy) => any;
|
|
5743
|
+
/**
|
|
5744
|
+
* @internal
|
|
5745
|
+
*/
|
|
5746
|
+
export declare const ListProjectPoliciesResponseFilterSensitiveLog: (obj: ListProjectPoliciesResponse) => any;
|
|
5514
5747
|
/**
|
|
5515
5748
|
* @internal
|
|
5516
5749
|
*/
|
|
@@ -5535,6 +5768,14 @@ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTa
|
|
|
5535
5768
|
* @internal
|
|
5536
5769
|
*/
|
|
5537
5770
|
export declare const NotificationChannelFilterSensitiveLog: (obj: NotificationChannel) => any;
|
|
5771
|
+
/**
|
|
5772
|
+
* @internal
|
|
5773
|
+
*/
|
|
5774
|
+
export declare const PutProjectPolicyRequestFilterSensitiveLog: (obj: PutProjectPolicyRequest) => any;
|
|
5775
|
+
/**
|
|
5776
|
+
* @internal
|
|
5777
|
+
*/
|
|
5778
|
+
export declare const PutProjectPolicyResponseFilterSensitiveLog: (obj: PutProjectPolicyResponse) => any;
|
|
5538
5779
|
/**
|
|
5539
5780
|
* @internal
|
|
5540
5781
|
*/
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListProjectPoliciesCommandInput, ListProjectPoliciesCommandOutput } from "../commands/ListProjectPoliciesCommand";
|
|
3
|
+
import { RekognitionPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListProjectPolicies(config: RekognitionPaginationConfiguration, input: ListProjectPoliciesCommandInput, ...additionalArguments: any): Paginator<ListProjectPoliciesCommandOutput>;
|
|
@@ -13,4 +13,5 @@ export * from "./ListCollectionsPaginator";
|
|
|
13
13
|
export * from "./ListDatasetEntriesPaginator";
|
|
14
14
|
export * from "./ListDatasetLabelsPaginator";
|
|
15
15
|
export * from "./ListFacesPaginator";
|
|
16
|
+
export * from "./ListProjectPoliciesPaginator";
|
|
16
17
|
export * from "./ListStreamProcessorsPaginator";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { CompareFacesCommandInput, CompareFacesCommandOutput } from "../commands/CompareFacesCommand";
|
|
4
|
+
import { CopyProjectVersionCommandInput, CopyProjectVersionCommandOutput } from "../commands/CopyProjectVersionCommand";
|
|
4
5
|
import { CreateCollectionCommandInput, CreateCollectionCommandOutput } from "../commands/CreateCollectionCommand";
|
|
5
6
|
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "../commands/CreateDatasetCommand";
|
|
6
7
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "../commands/CreateProjectCommand";
|
|
@@ -10,6 +11,7 @@ import { DeleteCollectionCommandInput, DeleteCollectionCommandOutput } from "../
|
|
|
10
11
|
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
|
|
11
12
|
import { DeleteFacesCommandInput, DeleteFacesCommandOutput } from "../commands/DeleteFacesCommand";
|
|
12
13
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
|
|
14
|
+
import { DeleteProjectPolicyCommandInput, DeleteProjectPolicyCommandOutput } from "../commands/DeleteProjectPolicyCommand";
|
|
13
15
|
import { DeleteProjectVersionCommandInput, DeleteProjectVersionCommandOutput } from "../commands/DeleteProjectVersionCommand";
|
|
14
16
|
import { DeleteStreamProcessorCommandInput, DeleteStreamProcessorCommandOutput } from "../commands/DeleteStreamProcessorCommand";
|
|
15
17
|
import { DescribeCollectionCommandInput, DescribeCollectionCommandOutput } from "../commands/DescribeCollectionCommand";
|
|
@@ -38,8 +40,10 @@ import { ListCollectionsCommandInput, ListCollectionsCommandOutput } from "../co
|
|
|
38
40
|
import { ListDatasetEntriesCommandInput, ListDatasetEntriesCommandOutput } from "../commands/ListDatasetEntriesCommand";
|
|
39
41
|
import { ListDatasetLabelsCommandInput, ListDatasetLabelsCommandOutput } from "../commands/ListDatasetLabelsCommand";
|
|
40
42
|
import { ListFacesCommandInput, ListFacesCommandOutput } from "../commands/ListFacesCommand";
|
|
43
|
+
import { ListProjectPoliciesCommandInput, ListProjectPoliciesCommandOutput } from "../commands/ListProjectPoliciesCommand";
|
|
41
44
|
import { ListStreamProcessorsCommandInput, ListStreamProcessorsCommandOutput } from "../commands/ListStreamProcessorsCommand";
|
|
42
45
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
46
|
+
import { PutProjectPolicyCommandInput, PutProjectPolicyCommandOutput } from "../commands/PutProjectPolicyCommand";
|
|
43
47
|
import { RecognizeCelebritiesCommandInput, RecognizeCelebritiesCommandOutput } from "../commands/RecognizeCelebritiesCommand";
|
|
44
48
|
import { SearchFacesByImageCommandInput, SearchFacesByImageCommandOutput } from "../commands/SearchFacesByImageCommand";
|
|
45
49
|
import { SearchFacesCommandInput, SearchFacesCommandOutput } from "../commands/SearchFacesCommand";
|
|
@@ -60,6 +64,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
60
64
|
import { UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput } from "../commands/UpdateDatasetEntriesCommand";
|
|
61
65
|
import { UpdateStreamProcessorCommandInput, UpdateStreamProcessorCommandOutput } from "../commands/UpdateStreamProcessorCommand";
|
|
62
66
|
export declare const serializeAws_json1_1CompareFacesCommand: (input: CompareFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
export declare const serializeAws_json1_1CopyProjectVersionCommand: (input: CopyProjectVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
68
|
export declare const serializeAws_json1_1CreateCollectionCommand: (input: CreateCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
69
|
export declare const serializeAws_json1_1CreateDatasetCommand: (input: CreateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
70
|
export declare const serializeAws_json1_1CreateProjectCommand: (input: CreateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -69,6 +74,7 @@ export declare const serializeAws_json1_1DeleteCollectionCommand: (input: Delete
|
|
|
69
74
|
export declare const serializeAws_json1_1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
75
|
export declare const serializeAws_json1_1DeleteFacesCommand: (input: DeleteFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
76
|
export declare const serializeAws_json1_1DeleteProjectCommand: (input: DeleteProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
+
export declare const serializeAws_json1_1DeleteProjectPolicyCommand: (input: DeleteProjectPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
78
|
export declare const serializeAws_json1_1DeleteProjectVersionCommand: (input: DeleteProjectVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
79
|
export declare const serializeAws_json1_1DeleteStreamProcessorCommand: (input: DeleteStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
80
|
export declare const serializeAws_json1_1DescribeCollectionCommand: (input: DescribeCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -97,8 +103,10 @@ export declare const serializeAws_json1_1ListCollectionsCommand: (input: ListCol
|
|
|
97
103
|
export declare const serializeAws_json1_1ListDatasetEntriesCommand: (input: ListDatasetEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
104
|
export declare const serializeAws_json1_1ListDatasetLabelsCommand: (input: ListDatasetLabelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
99
105
|
export declare const serializeAws_json1_1ListFacesCommand: (input: ListFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_json1_1ListProjectPoliciesCommand: (input: ListProjectPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
107
|
export declare const serializeAws_json1_1ListStreamProcessorsCommand: (input: ListStreamProcessorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
108
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
+
export declare const serializeAws_json1_1PutProjectPolicyCommand: (input: PutProjectPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
110
|
export declare const serializeAws_json1_1RecognizeCelebritiesCommand: (input: RecognizeCelebritiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
111
|
export declare const serializeAws_json1_1SearchFacesCommand: (input: SearchFacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
112
|
export declare const serializeAws_json1_1SearchFacesByImageCommand: (input: SearchFacesByImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -119,6 +127,7 @@ export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagReso
|
|
|
119
127
|
export declare const serializeAws_json1_1UpdateDatasetEntriesCommand: (input: UpdateDatasetEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
128
|
export declare const serializeAws_json1_1UpdateStreamProcessorCommand: (input: UpdateStreamProcessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
129
|
export declare const deserializeAws_json1_1CompareFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CompareFacesCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_json1_1CopyProjectVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CopyProjectVersionCommandOutput>;
|
|
122
131
|
export declare const deserializeAws_json1_1CreateCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCollectionCommandOutput>;
|
|
123
132
|
export declare const deserializeAws_json1_1CreateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetCommandOutput>;
|
|
124
133
|
export declare const deserializeAws_json1_1CreateProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectCommandOutput>;
|
|
@@ -128,6 +137,7 @@ export declare const deserializeAws_json1_1DeleteCollectionCommand: (output: __H
|
|
|
128
137
|
export declare const deserializeAws_json1_1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
|
|
129
138
|
export declare const deserializeAws_json1_1DeleteFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFacesCommandOutput>;
|
|
130
139
|
export declare const deserializeAws_json1_1DeleteProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectCommandOutput>;
|
|
140
|
+
export declare const deserializeAws_json1_1DeleteProjectPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectPolicyCommandOutput>;
|
|
131
141
|
export declare const deserializeAws_json1_1DeleteProjectVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectVersionCommandOutput>;
|
|
132
142
|
export declare const deserializeAws_json1_1DeleteStreamProcessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStreamProcessorCommandOutput>;
|
|
133
143
|
export declare const deserializeAws_json1_1DescribeCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCollectionCommandOutput>;
|
|
@@ -156,8 +166,10 @@ export declare const deserializeAws_json1_1ListCollectionsCommand: (output: __Ht
|
|
|
156
166
|
export declare const deserializeAws_json1_1ListDatasetEntriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetEntriesCommandOutput>;
|
|
157
167
|
export declare const deserializeAws_json1_1ListDatasetLabelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetLabelsCommandOutput>;
|
|
158
168
|
export declare const deserializeAws_json1_1ListFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFacesCommandOutput>;
|
|
169
|
+
export declare const deserializeAws_json1_1ListProjectPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProjectPoliciesCommandOutput>;
|
|
159
170
|
export declare const deserializeAws_json1_1ListStreamProcessorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamProcessorsCommandOutput>;
|
|
160
171
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
172
|
+
export declare const deserializeAws_json1_1PutProjectPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutProjectPolicyCommandOutput>;
|
|
161
173
|
export declare const deserializeAws_json1_1RecognizeCelebritiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RecognizeCelebritiesCommandOutput>;
|
|
162
174
|
export declare const deserializeAws_json1_1SearchFacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchFacesCommandOutput>;
|
|
163
175
|
export declare const deserializeAws_json1_1SearchFacesByImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchFacesByImageCommandOutput>;
|