|
27 | 27 | {"shape":"ServerInternalErrorException"} |
28 | 28 | ] |
29 | 29 | }, |
| 30 | + "BatchDeleteImportData":{ |
| 31 | + "name":"BatchDeleteImportData", |
| 32 | + "http":{ |
| 33 | + "method":"POST", |
| 34 | + "requestUri":"/" |
| 35 | + }, |
| 36 | + "input":{"shape":"BatchDeleteImportDataRequest"}, |
| 37 | + "output":{"shape":"BatchDeleteImportDataResponse"}, |
| 38 | + "errors":[ |
| 39 | + {"shape":"AuthorizationErrorException"}, |
| 40 | + {"shape":"InvalidParameterValueException"}, |
| 41 | + {"shape":"ServerInternalErrorException"} |
| 42 | + ] |
| 43 | + }, |
30 | 44 | "CreateApplication":{ |
31 | 45 | "name":"CreateApplication", |
32 | 46 | "http":{ |
|
168 | 182 | {"shape":"ServerInternalErrorException"} |
169 | 183 | ] |
170 | 184 | }, |
| 185 | + "DescribeImportTasks":{ |
| 186 | + "name":"DescribeImportTasks", |
| 187 | + "http":{ |
| 188 | + "method":"POST", |
| 189 | + "requestUri":"/" |
| 190 | + }, |
| 191 | + "input":{"shape":"DescribeImportTasksRequest"}, |
| 192 | + "output":{"shape":"DescribeImportTasksResponse"}, |
| 193 | + "errors":[ |
| 194 | + {"shape":"AuthorizationErrorException"}, |
| 195 | + {"shape":"InvalidParameterValueException"}, |
| 196 | + {"shape":"ServerInternalErrorException"} |
| 197 | + ] |
| 198 | + }, |
171 | 199 | "DescribeTags":{ |
172 | 200 | "name":"DescribeTags", |
173 | 201 | "http":{ |
|
310 | 338 | {"shape":"OperationNotPermittedException"} |
311 | 339 | ] |
312 | 340 | }, |
| 341 | + "StartImportTask":{ |
| 342 | + "name":"StartImportTask", |
| 343 | + "http":{ |
| 344 | + "method":"POST", |
| 345 | + "requestUri":"/" |
| 346 | + }, |
| 347 | + "input":{"shape":"StartImportTaskRequest"}, |
| 348 | + "output":{"shape":"StartImportTaskResponse"}, |
| 349 | + "errors":[ |
| 350 | + {"shape":"ResourceInUseException"}, |
| 351 | + {"shape":"AuthorizationErrorException"}, |
| 352 | + {"shape":"InvalidParameterValueException"}, |
| 353 | + {"shape":"ServerInternalErrorException"} |
| 354 | + ] |
| 355 | + }, |
313 | 356 | "StopContinuousExport":{ |
314 | 357 | "name":"StopContinuousExport", |
315 | 358 | "http":{ |
|
446 | 489 | }, |
447 | 490 | "exception":true |
448 | 491 | }, |
| 492 | + "BatchDeleteImportDataError":{ |
| 493 | + "type":"structure", |
| 494 | + "members":{ |
| 495 | + "importTaskId":{"shape":"ImportTaskIdentifier"}, |
| 496 | + "errorCode":{"shape":"BatchDeleteImportDataErrorCode"}, |
| 497 | + "errorDescription":{"shape":"BatchDeleteImportDataErrorDescription"} |
| 498 | + } |
| 499 | + }, |
| 500 | + "BatchDeleteImportDataErrorCode":{ |
| 501 | + "type":"string", |
| 502 | + "enum":[ |
| 503 | + "NOT_FOUND", |
| 504 | + "INTERNAL_SERVER_ERROR" |
| 505 | + ] |
| 506 | + }, |
| 507 | + "BatchDeleteImportDataErrorDescription":{"type":"string"}, |
| 508 | + "BatchDeleteImportDataErrorList":{ |
| 509 | + "type":"list", |
| 510 | + "member":{"shape":"BatchDeleteImportDataError"} |
| 511 | + }, |
| 512 | + "BatchDeleteImportDataRequest":{ |
| 513 | + "type":"structure", |
| 514 | + "required":["importTaskIds"], |
| 515 | + "members":{ |
| 516 | + "importTaskIds":{"shape":"ToDeleteIdentifierList"} |
| 517 | + } |
| 518 | + }, |
| 519 | + "BatchDeleteImportDataResponse":{ |
| 520 | + "type":"structure", |
| 521 | + "members":{ |
| 522 | + "errors":{"shape":"BatchDeleteImportDataErrorList"} |
| 523 | + } |
| 524 | + }, |
449 | 525 | "Boolean":{"type":"boolean"}, |
450 | 526 | "BoxedInteger":{ |
451 | 527 | "type":"integer", |
452 | 528 | "box":true |
453 | 529 | }, |
| 530 | + "ClientRequestToken":{ |
| 531 | + "type":"string", |
| 532 | + "max":100, |
| 533 | + "min":1 |
| 534 | + }, |
454 | 535 | "Condition":{"type":"string"}, |
455 | 536 | "Configuration":{ |
456 | 537 | "type":"map", |
|
727 | 808 | "nextToken":{"shape":"NextToken"} |
728 | 809 | } |
729 | 810 | }, |
| 811 | + "DescribeImportTasksFilterList":{ |
| 812 | + "type":"list", |
| 813 | + "member":{"shape":"ImportTaskFilter"} |
| 814 | + }, |
| 815 | + "DescribeImportTasksMaxResults":{ |
| 816 | + "type":"integer", |
| 817 | + "box":true, |
| 818 | + "max":100, |
| 819 | + "min":1 |
| 820 | + }, |
| 821 | + "DescribeImportTasksRequest":{ |
| 822 | + "type":"structure", |
| 823 | + "members":{ |
| 824 | + "filters":{"shape":"DescribeImportTasksFilterList"}, |
| 825 | + "maxResults":{"shape":"DescribeImportTasksMaxResults"}, |
| 826 | + "nextToken":{"shape":"NextToken"} |
| 827 | + } |
| 828 | + }, |
| 829 | + "DescribeImportTasksResponse":{ |
| 830 | + "type":"structure", |
| 831 | + "members":{ |
| 832 | + "nextToken":{"shape":"NextToken"}, |
| 833 | + "tasks":{"shape":"ImportTaskList"} |
| 834 | + } |
| 835 | + }, |
730 | 836 | "DescribeTagsRequest":{ |
731 | 837 | "type":"structure", |
732 | 838 | "members":{ |
|
868 | 974 | "connectorSummary":{"shape":"CustomerConnectorInfo"} |
869 | 975 | } |
870 | 976 | }, |
| 977 | + "ImportStatus":{ |
| 978 | + "type":"string", |
| 979 | + "enum":[ |
| 980 | + "IMPORT_IN_PROGRESS", |
| 981 | + "IMPORT_COMPLETE", |
| 982 | + "IMPORT_FAILED", |
| 983 | + "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED", |
| 984 | + "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED", |
| 985 | + "DELETE_IN_PROGRESS", |
| 986 | + "DELETE_COMPLETE", |
| 987 | + "DELETE_FAILED", |
| 988 | + "DELETE_FAILED_LIMIT_EXCEEDED" |
| 989 | + ] |
| 990 | + }, |
| 991 | + "ImportTask":{ |
| 992 | + "type":"structure", |
| 993 | + "members":{ |
| 994 | + "importTaskId":{"shape":"ImportTaskIdentifier"}, |
| 995 | + "clientRequestToken":{"shape":"ClientRequestToken"}, |
| 996 | + "name":{"shape":"ImportTaskName"}, |
| 997 | + "importUrl":{"shape":"ImportURL"}, |
| 998 | + "status":{"shape":"ImportStatus"}, |
| 999 | + "importRequestTime":{"shape":"TimeStamp"}, |
| 1000 | + "importCompletionTime":{"shape":"TimeStamp"}, |
| 1001 | + "importDeletedTime":{"shape":"TimeStamp"}, |
| 1002 | + "serverImportSuccess":{"shape":"Integer"}, |
| 1003 | + "serverImportFailure":{"shape":"Integer"}, |
| 1004 | + "applicationImportSuccess":{"shape":"Integer"}, |
| 1005 | + "applicationImportFailure":{"shape":"Integer"}, |
| 1006 | + "errorsAndFailedEntriesZip":{"shape":"S3PresignedUrl"} |
| 1007 | + } |
| 1008 | + }, |
| 1009 | + "ImportTaskFilter":{ |
| 1010 | + "type":"structure", |
| 1011 | + "members":{ |
| 1012 | + "name":{"shape":"ImportTaskFilterName"}, |
| 1013 | + "values":{"shape":"ImportTaskFilterValueList"} |
| 1014 | + } |
| 1015 | + }, |
| 1016 | + "ImportTaskFilterName":{ |
| 1017 | + "type":"string", |
| 1018 | + "enum":[ |
| 1019 | + "IMPORT_TASK_ID", |
| 1020 | + "STATUS", |
| 1021 | + "NAME" |
| 1022 | + ] |
| 1023 | + }, |
| 1024 | + "ImportTaskFilterValue":{ |
| 1025 | + "type":"string", |
| 1026 | + "max":100, |
| 1027 | + "min":1 |
| 1028 | + }, |
| 1029 | + "ImportTaskFilterValueList":{ |
| 1030 | + "type":"list", |
| 1031 | + "member":{"shape":"ImportTaskFilterValue"}, |
| 1032 | + "max":100, |
| 1033 | + "min":1 |
| 1034 | + }, |
| 1035 | + "ImportTaskIdentifier":{"type":"string"}, |
| 1036 | + "ImportTaskList":{ |
| 1037 | + "type":"list", |
| 1038 | + "member":{"shape":"ImportTask"} |
| 1039 | + }, |
| 1040 | + "ImportTaskName":{ |
| 1041 | + "type":"string", |
| 1042 | + "max":100, |
| 1043 | + "min":1 |
| 1044 | + }, |
| 1045 | + "ImportURL":{ |
| 1046 | + "type":"string", |
| 1047 | + "max":4000, |
| 1048 | + "min":1 |
| 1049 | + }, |
871 | 1050 | "Integer":{"type":"integer"}, |
872 | 1051 | "InvalidParameterException":{ |
873 | 1052 | "type":"structure", |
|
977 | 1156 | "exception":true |
978 | 1157 | }, |
979 | 1158 | "S3Bucket":{"type":"string"}, |
| 1159 | + "S3PresignedUrl":{"type":"string"}, |
980 | 1160 | "SchemaStorageConfig":{ |
981 | 1161 | "type":"map", |
982 | 1162 | "key":{"shape":"DatabaseName"}, |
|
1033 | 1213 | "exportId":{"shape":"ConfigurationsExportId"} |
1034 | 1214 | } |
1035 | 1215 | }, |
| 1216 | + "StartImportTaskRequest":{ |
| 1217 | + "type":"structure", |
| 1218 | + "required":[ |
| 1219 | + "name", |
| 1220 | + "importUrl" |
| 1221 | + ], |
| 1222 | + "members":{ |
| 1223 | + "clientRequestToken":{ |
| 1224 | + "shape":"ClientRequestToken", |
| 1225 | + "idempotencyToken":true |
| 1226 | + }, |
| 1227 | + "name":{"shape":"ImportTaskName"}, |
| 1228 | + "importUrl":{"shape":"ImportURL"} |
| 1229 | + } |
| 1230 | + }, |
| 1231 | + "StartImportTaskResponse":{ |
| 1232 | + "type":"structure", |
| 1233 | + "members":{ |
| 1234 | + "task":{"shape":"ImportTask"} |
| 1235 | + } |
| 1236 | + }, |
1036 | 1237 | "StopContinuousExportRequest":{ |
1037 | 1238 | "type":"structure", |
1038 | 1239 | "required":["exportId"], |
|
1099 | 1300 | }, |
1100 | 1301 | "TagValue":{"type":"string"}, |
1101 | 1302 | "TimeStamp":{"type":"timestamp"}, |
| 1303 | + "ToDeleteIdentifierList":{ |
| 1304 | + "type":"list", |
| 1305 | + "member":{"shape":"ImportTaskIdentifier"}, |
| 1306 | + "max":10, |
| 1307 | + "min":1 |
| 1308 | + }, |
1102 | 1309 | "UpdateApplicationRequest":{ |
1103 | 1310 | "type":"structure", |
1104 | 1311 | "required":["configurationId"], |
|
0 commit comments