aws-sdk 2.1466.0 → 2.1468.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/README.md +1 -1
  3. package/apis/bedrock-2023-04-20.examples.json +5 -0
  4. package/apis/bedrock-2023-04-20.min.json +1062 -0
  5. package/apis/bedrock-2023-04-20.paginators.json +22 -0
  6. package/apis/bedrock-2023-04-20.waiters2.json +5 -0
  7. package/apis/bedrock-runtime-2023-09-30.examples.json +5 -0
  8. package/apis/bedrock-runtime-2023-09-30.min.json +191 -0
  9. package/apis/bedrock-runtime-2023-09-30.paginators.json +4 -0
  10. package/apis/ec2-2016-11-15.min.json +1292 -1235
  11. package/apis/iotfleetwise-2021-06-17.min.json +62 -13
  12. package/apis/metadata.json +7 -0
  13. package/apis/rds-2014-10-31.min.json +1 -0
  14. package/apis/sagemaker-2017-07-24.min.json +681 -662
  15. package/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +9 -6
  16. package/clients/all.d.ts +2 -0
  17. package/clients/all.js +3 -1
  18. package/clients/bedrock.d.ts +1102 -0
  19. package/clients/bedrock.js +19 -0
  20. package/clients/bedrockruntime.d.ts +141 -0
  21. package/clients/bedrockruntime.js +18 -0
  22. package/clients/budgets.d.ts +8 -7
  23. package/clients/ec2.d.ts +70 -5
  24. package/clients/iotfleetwise.d.ts +71 -1
  25. package/clients/managedblockchain.d.ts +3 -3
  26. package/clients/rds.d.ts +35 -31
  27. package/clients/sagemaker.d.ts +58 -31
  28. package/clients/sagemakerfeaturestoreruntime.d.ts +7 -2
  29. package/clients/sts.d.ts +2 -1
  30. package/clients/transfer.d.ts +21 -21
  31. package/clients/wafv2.d.ts +2 -2
  32. package/dist/aws-sdk-core-react-native.js +2 -2
  33. package/dist/aws-sdk-react-native.js +90 -9
  34. package/dist/aws-sdk.js +1303 -1238
  35. package/dist/aws-sdk.min.js +74 -74
  36. package/lib/config_service_placeholders.d.ts +4 -0
  37. package/lib/core.js +1 -1
  38. package/package.json +1 -1
@@ -0,0 +1,1062 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2023-04-20",
5
+ "endpointPrefix": "bedrock",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "Amazon Bedrock",
9
+ "serviceId": "Bedrock",
10
+ "signatureVersion": "v4",
11
+ "signingName": "bedrock",
12
+ "uid": "bedrock-2023-04-20"
13
+ },
14
+ "operations": {
15
+ "CreateModelCustomizationJob": {
16
+ "http": {
17
+ "requestUri": "/model-customization-jobs",
18
+ "responseCode": 201
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "jobName",
24
+ "customModelName",
25
+ "roleArn",
26
+ "baseModelIdentifier",
27
+ "trainingDataConfig",
28
+ "outputDataConfig",
29
+ "hyperParameters"
30
+ ],
31
+ "members": {
32
+ "jobName": {},
33
+ "customModelName": {},
34
+ "roleArn": {},
35
+ "clientRequestToken": {
36
+ "idempotencyToken": true
37
+ },
38
+ "baseModelIdentifier": {},
39
+ "customModelKmsKeyId": {},
40
+ "jobTags": {
41
+ "shape": "S8"
42
+ },
43
+ "customModelTags": {
44
+ "shape": "S8"
45
+ },
46
+ "trainingDataConfig": {
47
+ "shape": "Sc"
48
+ },
49
+ "validationDataConfig": {
50
+ "shape": "Se"
51
+ },
52
+ "outputDataConfig": {
53
+ "shape": "Sh"
54
+ },
55
+ "hyperParameters": {
56
+ "shape": "Si"
57
+ },
58
+ "vpcConfig": {
59
+ "shape": "Sk"
60
+ }
61
+ }
62
+ },
63
+ "output": {
64
+ "type": "structure",
65
+ "required": [
66
+ "jobArn"
67
+ ],
68
+ "members": {
69
+ "jobArn": {}
70
+ }
71
+ },
72
+ "idempotent": true
73
+ },
74
+ "CreateProvisionedModelThroughput": {
75
+ "http": {
76
+ "requestUri": "/provisioned-model-throughput",
77
+ "responseCode": 201
78
+ },
79
+ "input": {
80
+ "type": "structure",
81
+ "required": [
82
+ "modelUnits",
83
+ "provisionedModelName",
84
+ "modelId"
85
+ ],
86
+ "members": {
87
+ "clientRequestToken": {
88
+ "idempotencyToken": true
89
+ },
90
+ "modelUnits": {
91
+ "type": "integer"
92
+ },
93
+ "provisionedModelName": {},
94
+ "modelId": {},
95
+ "commitmentDuration": {},
96
+ "tags": {
97
+ "shape": "S8"
98
+ }
99
+ }
100
+ },
101
+ "output": {
102
+ "type": "structure",
103
+ "required": [
104
+ "provisionedModelArn"
105
+ ],
106
+ "members": {
107
+ "provisionedModelArn": {}
108
+ }
109
+ },
110
+ "idempotent": true
111
+ },
112
+ "DeleteCustomModel": {
113
+ "http": {
114
+ "method": "DELETE",
115
+ "requestUri": "/custom-models/{modelIdentifier}",
116
+ "responseCode": 200
117
+ },
118
+ "input": {
119
+ "type": "structure",
120
+ "required": [
121
+ "modelIdentifier"
122
+ ],
123
+ "members": {
124
+ "modelIdentifier": {
125
+ "location": "uri",
126
+ "locationName": "modelIdentifier"
127
+ }
128
+ }
129
+ },
130
+ "output": {
131
+ "type": "structure",
132
+ "members": {}
133
+ },
134
+ "idempotent": true
135
+ },
136
+ "DeleteModelInvocationLoggingConfiguration": {
137
+ "http": {
138
+ "method": "DELETE",
139
+ "requestUri": "/logging/modelinvocations",
140
+ "responseCode": 200
141
+ },
142
+ "input": {
143
+ "type": "structure",
144
+ "members": {}
145
+ },
146
+ "output": {
147
+ "type": "structure",
148
+ "members": {}
149
+ },
150
+ "idempotent": true
151
+ },
152
+ "DeleteProvisionedModelThroughput": {
153
+ "http": {
154
+ "method": "DELETE",
155
+ "requestUri": "/provisioned-model-throughput/{provisionedModelId}",
156
+ "responseCode": 200
157
+ },
158
+ "input": {
159
+ "type": "structure",
160
+ "required": [
161
+ "provisionedModelId"
162
+ ],
163
+ "members": {
164
+ "provisionedModelId": {
165
+ "location": "uri",
166
+ "locationName": "provisionedModelId"
167
+ }
168
+ }
169
+ },
170
+ "output": {
171
+ "type": "structure",
172
+ "members": {}
173
+ },
174
+ "idempotent": true
175
+ },
176
+ "GetCustomModel": {
177
+ "http": {
178
+ "method": "GET",
179
+ "requestUri": "/custom-models/{modelIdentifier}",
180
+ "responseCode": 200
181
+ },
182
+ "input": {
183
+ "type": "structure",
184
+ "required": [
185
+ "modelIdentifier"
186
+ ],
187
+ "members": {
188
+ "modelIdentifier": {
189
+ "location": "uri",
190
+ "locationName": "modelIdentifier"
191
+ }
192
+ }
193
+ },
194
+ "output": {
195
+ "type": "structure",
196
+ "required": [
197
+ "modelArn",
198
+ "modelName",
199
+ "jobArn",
200
+ "baseModelArn",
201
+ "trainingDataConfig",
202
+ "outputDataConfig",
203
+ "creationTime"
204
+ ],
205
+ "members": {
206
+ "modelArn": {},
207
+ "modelName": {},
208
+ "jobName": {},
209
+ "jobArn": {},
210
+ "baseModelArn": {},
211
+ "modelKmsKeyArn": {},
212
+ "hyperParameters": {
213
+ "shape": "Si"
214
+ },
215
+ "trainingDataConfig": {
216
+ "shape": "Sc"
217
+ },
218
+ "validationDataConfig": {
219
+ "shape": "Se"
220
+ },
221
+ "outputDataConfig": {
222
+ "shape": "Sh"
223
+ },
224
+ "trainingMetrics": {
225
+ "shape": "S19"
226
+ },
227
+ "validationMetrics": {
228
+ "shape": "S1b"
229
+ },
230
+ "creationTime": {
231
+ "shape": "S1d"
232
+ }
233
+ }
234
+ }
235
+ },
236
+ "GetFoundationModel": {
237
+ "http": {
238
+ "method": "GET",
239
+ "requestUri": "/foundation-models/{modelIdentifier}",
240
+ "responseCode": 200
241
+ },
242
+ "input": {
243
+ "type": "structure",
244
+ "required": [
245
+ "modelIdentifier"
246
+ ],
247
+ "members": {
248
+ "modelIdentifier": {
249
+ "location": "uri",
250
+ "locationName": "modelIdentifier"
251
+ }
252
+ }
253
+ },
254
+ "output": {
255
+ "type": "structure",
256
+ "members": {
257
+ "modelDetails": {
258
+ "type": "structure",
259
+ "required": [
260
+ "modelArn",
261
+ "modelId"
262
+ ],
263
+ "members": {
264
+ "modelArn": {},
265
+ "modelId": {},
266
+ "modelName": {},
267
+ "providerName": {},
268
+ "inputModalities": {
269
+ "shape": "S1k"
270
+ },
271
+ "outputModalities": {
272
+ "shape": "S1k"
273
+ },
274
+ "responseStreamingSupported": {
275
+ "type": "boolean"
276
+ },
277
+ "customizationsSupported": {
278
+ "shape": "S1n"
279
+ },
280
+ "inferenceTypesSupported": {
281
+ "shape": "S1p"
282
+ }
283
+ }
284
+ }
285
+ }
286
+ }
287
+ },
288
+ "GetModelCustomizationJob": {
289
+ "http": {
290
+ "method": "GET",
291
+ "requestUri": "/model-customization-jobs/{jobIdentifier}",
292
+ "responseCode": 200
293
+ },
294
+ "input": {
295
+ "type": "structure",
296
+ "required": [
297
+ "jobIdentifier"
298
+ ],
299
+ "members": {
300
+ "jobIdentifier": {
301
+ "location": "uri",
302
+ "locationName": "jobIdentifier"
303
+ }
304
+ }
305
+ },
306
+ "output": {
307
+ "type": "structure",
308
+ "required": [
309
+ "jobArn",
310
+ "jobName",
311
+ "outputModelName",
312
+ "roleArn",
313
+ "creationTime",
314
+ "baseModelArn",
315
+ "hyperParameters",
316
+ "trainingDataConfig",
317
+ "validationDataConfig",
318
+ "outputDataConfig"
319
+ ],
320
+ "members": {
321
+ "jobArn": {},
322
+ "jobName": {},
323
+ "outputModelName": {},
324
+ "outputModelArn": {},
325
+ "clientRequestToken": {},
326
+ "roleArn": {},
327
+ "status": {},
328
+ "failureMessage": {},
329
+ "creationTime": {
330
+ "shape": "S1d"
331
+ },
332
+ "lastModifiedTime": {
333
+ "shape": "S1d"
334
+ },
335
+ "endTime": {
336
+ "shape": "S1d"
337
+ },
338
+ "baseModelArn": {},
339
+ "hyperParameters": {
340
+ "shape": "Si"
341
+ },
342
+ "trainingDataConfig": {
343
+ "shape": "Sc"
344
+ },
345
+ "validationDataConfig": {
346
+ "shape": "Se"
347
+ },
348
+ "outputDataConfig": {
349
+ "shape": "Sh"
350
+ },
351
+ "outputModelKmsKeyArn": {},
352
+ "trainingMetrics": {
353
+ "shape": "S19"
354
+ },
355
+ "validationMetrics": {
356
+ "shape": "S1b"
357
+ },
358
+ "vpcConfig": {
359
+ "shape": "Sk"
360
+ }
361
+ }
362
+ }
363
+ },
364
+ "GetModelInvocationLoggingConfiguration": {
365
+ "http": {
366
+ "method": "GET",
367
+ "requestUri": "/logging/modelinvocations",
368
+ "responseCode": 200
369
+ },
370
+ "input": {
371
+ "type": "structure",
372
+ "members": {}
373
+ },
374
+ "output": {
375
+ "type": "structure",
376
+ "members": {
377
+ "loggingConfig": {
378
+ "shape": "S1z"
379
+ }
380
+ }
381
+ }
382
+ },
383
+ "GetProvisionedModelThroughput": {
384
+ "http": {
385
+ "method": "GET",
386
+ "requestUri": "/provisioned-model-throughput/{provisionedModelId}",
387
+ "responseCode": 200
388
+ },
389
+ "input": {
390
+ "type": "structure",
391
+ "required": [
392
+ "provisionedModelId"
393
+ ],
394
+ "members": {
395
+ "provisionedModelId": {
396
+ "location": "uri",
397
+ "locationName": "provisionedModelId"
398
+ }
399
+ }
400
+ },
401
+ "output": {
402
+ "type": "structure",
403
+ "required": [
404
+ "modelUnits",
405
+ "desiredModelUnits",
406
+ "provisionedModelName",
407
+ "provisionedModelArn",
408
+ "modelArn",
409
+ "desiredModelArn",
410
+ "foundationModelArn",
411
+ "status",
412
+ "creationTime",
413
+ "lastModifiedTime"
414
+ ],
415
+ "members": {
416
+ "modelUnits": {
417
+ "type": "integer"
418
+ },
419
+ "desiredModelUnits": {
420
+ "type": "integer"
421
+ },
422
+ "provisionedModelName": {},
423
+ "provisionedModelArn": {},
424
+ "modelArn": {},
425
+ "desiredModelArn": {},
426
+ "foundationModelArn": {},
427
+ "status": {},
428
+ "creationTime": {
429
+ "shape": "S1d"
430
+ },
431
+ "lastModifiedTime": {
432
+ "shape": "S1d"
433
+ },
434
+ "failureMessage": {},
435
+ "commitmentDuration": {},
436
+ "commitmentExpirationTime": {
437
+ "shape": "S1d"
438
+ }
439
+ }
440
+ }
441
+ },
442
+ "ListCustomModels": {
443
+ "http": {
444
+ "method": "GET",
445
+ "requestUri": "/custom-models",
446
+ "responseCode": 200
447
+ },
448
+ "input": {
449
+ "type": "structure",
450
+ "members": {
451
+ "creationTimeBefore": {
452
+ "shape": "S1d",
453
+ "location": "querystring",
454
+ "locationName": "creationTimeBefore"
455
+ },
456
+ "creationTimeAfter": {
457
+ "shape": "S1d",
458
+ "location": "querystring",
459
+ "locationName": "creationTimeAfter"
460
+ },
461
+ "nameContains": {
462
+ "location": "querystring",
463
+ "locationName": "nameContains"
464
+ },
465
+ "baseModelArnEquals": {
466
+ "location": "querystring",
467
+ "locationName": "baseModelArnEquals"
468
+ },
469
+ "foundationModelArnEquals": {
470
+ "location": "querystring",
471
+ "locationName": "foundationModelArnEquals"
472
+ },
473
+ "maxResults": {
474
+ "location": "querystring",
475
+ "locationName": "maxResults",
476
+ "type": "integer"
477
+ },
478
+ "nextToken": {
479
+ "location": "querystring",
480
+ "locationName": "nextToken"
481
+ },
482
+ "sortBy": {
483
+ "location": "querystring",
484
+ "locationName": "sortBy"
485
+ },
486
+ "sortOrder": {
487
+ "location": "querystring",
488
+ "locationName": "sortOrder"
489
+ }
490
+ }
491
+ },
492
+ "output": {
493
+ "type": "structure",
494
+ "members": {
495
+ "nextToken": {},
496
+ "modelSummaries": {
497
+ "type": "list",
498
+ "member": {
499
+ "type": "structure",
500
+ "required": [
501
+ "modelArn",
502
+ "modelName",
503
+ "creationTime",
504
+ "baseModelArn",
505
+ "baseModelName"
506
+ ],
507
+ "members": {
508
+ "modelArn": {},
509
+ "modelName": {},
510
+ "creationTime": {
511
+ "shape": "S1d"
512
+ },
513
+ "baseModelArn": {},
514
+ "baseModelName": {}
515
+ }
516
+ }
517
+ }
518
+ }
519
+ }
520
+ },
521
+ "ListFoundationModels": {
522
+ "http": {
523
+ "method": "GET",
524
+ "requestUri": "/foundation-models",
525
+ "responseCode": 200
526
+ },
527
+ "input": {
528
+ "type": "structure",
529
+ "members": {
530
+ "byProvider": {
531
+ "location": "querystring",
532
+ "locationName": "byProvider"
533
+ },
534
+ "byCustomizationType": {
535
+ "location": "querystring",
536
+ "locationName": "byCustomizationType"
537
+ },
538
+ "byOutputModality": {
539
+ "location": "querystring",
540
+ "locationName": "byOutputModality"
541
+ },
542
+ "byInferenceType": {
543
+ "location": "querystring",
544
+ "locationName": "byInferenceType"
545
+ }
546
+ }
547
+ },
548
+ "output": {
549
+ "type": "structure",
550
+ "members": {
551
+ "modelSummaries": {
552
+ "type": "list",
553
+ "member": {
554
+ "type": "structure",
555
+ "required": [
556
+ "modelArn",
557
+ "modelId"
558
+ ],
559
+ "members": {
560
+ "modelArn": {},
561
+ "modelId": {},
562
+ "modelName": {},
563
+ "providerName": {},
564
+ "inputModalities": {
565
+ "shape": "S1k"
566
+ },
567
+ "outputModalities": {
568
+ "shape": "S1k"
569
+ },
570
+ "responseStreamingSupported": {
571
+ "type": "boolean"
572
+ },
573
+ "customizationsSupported": {
574
+ "shape": "S1n"
575
+ },
576
+ "inferenceTypesSupported": {
577
+ "shape": "S1p"
578
+ }
579
+ }
580
+ }
581
+ }
582
+ }
583
+ }
584
+ },
585
+ "ListModelCustomizationJobs": {
586
+ "http": {
587
+ "method": "GET",
588
+ "requestUri": "/model-customization-jobs",
589
+ "responseCode": 200
590
+ },
591
+ "input": {
592
+ "type": "structure",
593
+ "members": {
594
+ "creationTimeAfter": {
595
+ "shape": "S1d",
596
+ "location": "querystring",
597
+ "locationName": "creationTimeAfter"
598
+ },
599
+ "creationTimeBefore": {
600
+ "shape": "S1d",
601
+ "location": "querystring",
602
+ "locationName": "creationTimeBefore"
603
+ },
604
+ "statusEquals": {
605
+ "location": "querystring",
606
+ "locationName": "statusEquals"
607
+ },
608
+ "nameContains": {
609
+ "location": "querystring",
610
+ "locationName": "nameContains"
611
+ },
612
+ "maxResults": {
613
+ "location": "querystring",
614
+ "locationName": "maxResults",
615
+ "type": "integer"
616
+ },
617
+ "nextToken": {
618
+ "location": "querystring",
619
+ "locationName": "nextToken"
620
+ },
621
+ "sortBy": {
622
+ "location": "querystring",
623
+ "locationName": "sortBy"
624
+ },
625
+ "sortOrder": {
626
+ "location": "querystring",
627
+ "locationName": "sortOrder"
628
+ }
629
+ }
630
+ },
631
+ "output": {
632
+ "type": "structure",
633
+ "members": {
634
+ "nextToken": {},
635
+ "modelCustomizationJobSummaries": {
636
+ "type": "list",
637
+ "member": {
638
+ "type": "structure",
639
+ "required": [
640
+ "jobArn",
641
+ "baseModelArn",
642
+ "jobName",
643
+ "status",
644
+ "creationTime"
645
+ ],
646
+ "members": {
647
+ "jobArn": {},
648
+ "baseModelArn": {},
649
+ "jobName": {},
650
+ "status": {},
651
+ "lastModifiedTime": {
652
+ "shape": "S1d"
653
+ },
654
+ "creationTime": {
655
+ "shape": "S1d"
656
+ },
657
+ "endTime": {
658
+ "shape": "S1d"
659
+ },
660
+ "customModelArn": {},
661
+ "customModelName": {}
662
+ }
663
+ }
664
+ }
665
+ }
666
+ }
667
+ },
668
+ "ListProvisionedModelThroughputs": {
669
+ "http": {
670
+ "method": "GET",
671
+ "requestUri": "/provisioned-model-throughputs",
672
+ "responseCode": 200
673
+ },
674
+ "input": {
675
+ "type": "structure",
676
+ "members": {
677
+ "creationTimeAfter": {
678
+ "shape": "S1d",
679
+ "location": "querystring",
680
+ "locationName": "creationTimeAfter"
681
+ },
682
+ "creationTimeBefore": {
683
+ "shape": "S1d",
684
+ "location": "querystring",
685
+ "locationName": "creationTimeBefore"
686
+ },
687
+ "statusEquals": {
688
+ "location": "querystring",
689
+ "locationName": "statusEquals"
690
+ },
691
+ "modelArnEquals": {
692
+ "location": "querystring",
693
+ "locationName": "modelArnEquals"
694
+ },
695
+ "nameContains": {
696
+ "location": "querystring",
697
+ "locationName": "nameContains"
698
+ },
699
+ "maxResults": {
700
+ "location": "querystring",
701
+ "locationName": "maxResults",
702
+ "type": "integer"
703
+ },
704
+ "nextToken": {
705
+ "location": "querystring",
706
+ "locationName": "nextToken"
707
+ },
708
+ "sortBy": {
709
+ "location": "querystring",
710
+ "locationName": "sortBy"
711
+ },
712
+ "sortOrder": {
713
+ "location": "querystring",
714
+ "locationName": "sortOrder"
715
+ }
716
+ }
717
+ },
718
+ "output": {
719
+ "type": "structure",
720
+ "members": {
721
+ "nextToken": {},
722
+ "provisionedModelSummaries": {
723
+ "type": "list",
724
+ "member": {
725
+ "type": "structure",
726
+ "required": [
727
+ "provisionedModelName",
728
+ "provisionedModelArn",
729
+ "modelArn",
730
+ "desiredModelArn",
731
+ "foundationModelArn",
732
+ "modelUnits",
733
+ "desiredModelUnits",
734
+ "status",
735
+ "creationTime",
736
+ "lastModifiedTime"
737
+ ],
738
+ "members": {
739
+ "provisionedModelName": {},
740
+ "provisionedModelArn": {},
741
+ "modelArn": {},
742
+ "desiredModelArn": {},
743
+ "foundationModelArn": {},
744
+ "modelUnits": {
745
+ "type": "integer"
746
+ },
747
+ "desiredModelUnits": {
748
+ "type": "integer"
749
+ },
750
+ "status": {},
751
+ "commitmentDuration": {},
752
+ "commitmentExpirationTime": {
753
+ "shape": "S1d"
754
+ },
755
+ "creationTime": {
756
+ "shape": "S1d"
757
+ },
758
+ "lastModifiedTime": {
759
+ "shape": "S1d"
760
+ }
761
+ }
762
+ }
763
+ }
764
+ }
765
+ }
766
+ },
767
+ "ListTagsForResource": {
768
+ "http": {
769
+ "requestUri": "/listTagsForResource",
770
+ "responseCode": 200
771
+ },
772
+ "input": {
773
+ "type": "structure",
774
+ "required": [
775
+ "resourceARN"
776
+ ],
777
+ "members": {
778
+ "resourceARN": {}
779
+ }
780
+ },
781
+ "output": {
782
+ "type": "structure",
783
+ "members": {
784
+ "tags": {
785
+ "shape": "S8"
786
+ }
787
+ }
788
+ }
789
+ },
790
+ "PutModelInvocationLoggingConfiguration": {
791
+ "http": {
792
+ "method": "PUT",
793
+ "requestUri": "/logging/modelinvocations",
794
+ "responseCode": 200
795
+ },
796
+ "input": {
797
+ "type": "structure",
798
+ "required": [
799
+ "loggingConfig"
800
+ ],
801
+ "members": {
802
+ "loggingConfig": {
803
+ "shape": "S1z"
804
+ }
805
+ }
806
+ },
807
+ "output": {
808
+ "type": "structure",
809
+ "members": {}
810
+ },
811
+ "idempotent": true
812
+ },
813
+ "StopModelCustomizationJob": {
814
+ "http": {
815
+ "requestUri": "/model-customization-jobs/{jobIdentifier}/stop",
816
+ "responseCode": 200
817
+ },
818
+ "input": {
819
+ "type": "structure",
820
+ "required": [
821
+ "jobIdentifier"
822
+ ],
823
+ "members": {
824
+ "jobIdentifier": {
825
+ "location": "uri",
826
+ "locationName": "jobIdentifier"
827
+ }
828
+ }
829
+ },
830
+ "output": {
831
+ "type": "structure",
832
+ "members": {}
833
+ },
834
+ "idempotent": true
835
+ },
836
+ "TagResource": {
837
+ "http": {
838
+ "requestUri": "/tagResource",
839
+ "responseCode": 200
840
+ },
841
+ "input": {
842
+ "type": "structure",
843
+ "required": [
844
+ "resourceARN",
845
+ "tags"
846
+ ],
847
+ "members": {
848
+ "resourceARN": {},
849
+ "tags": {
850
+ "shape": "S8"
851
+ }
852
+ }
853
+ },
854
+ "output": {
855
+ "type": "structure",
856
+ "members": {}
857
+ }
858
+ },
859
+ "UntagResource": {
860
+ "http": {
861
+ "requestUri": "/untagResource",
862
+ "responseCode": 200
863
+ },
864
+ "input": {
865
+ "type": "structure",
866
+ "required": [
867
+ "resourceARN",
868
+ "tagKeys"
869
+ ],
870
+ "members": {
871
+ "resourceARN": {},
872
+ "tagKeys": {
873
+ "type": "list",
874
+ "member": {}
875
+ }
876
+ }
877
+ },
878
+ "output": {
879
+ "type": "structure",
880
+ "members": {}
881
+ }
882
+ },
883
+ "UpdateProvisionedModelThroughput": {
884
+ "http": {
885
+ "method": "PATCH",
886
+ "requestUri": "/provisioned-model-throughput/{provisionedModelId}",
887
+ "responseCode": 200
888
+ },
889
+ "input": {
890
+ "type": "structure",
891
+ "required": [
892
+ "provisionedModelId"
893
+ ],
894
+ "members": {
895
+ "provisionedModelId": {
896
+ "location": "uri",
897
+ "locationName": "provisionedModelId"
898
+ },
899
+ "desiredProvisionedModelName": {},
900
+ "desiredModelId": {}
901
+ }
902
+ },
903
+ "output": {
904
+ "type": "structure",
905
+ "members": {}
906
+ },
907
+ "idempotent": true
908
+ }
909
+ },
910
+ "shapes": {
911
+ "S8": {
912
+ "type": "list",
913
+ "member": {
914
+ "type": "structure",
915
+ "required": [
916
+ "key",
917
+ "value"
918
+ ],
919
+ "members": {
920
+ "key": {},
921
+ "value": {}
922
+ }
923
+ }
924
+ },
925
+ "Sc": {
926
+ "type": "structure",
927
+ "required": [
928
+ "s3Uri"
929
+ ],
930
+ "members": {
931
+ "s3Uri": {}
932
+ }
933
+ },
934
+ "Se": {
935
+ "type": "structure",
936
+ "required": [
937
+ "validators"
938
+ ],
939
+ "members": {
940
+ "validators": {
941
+ "type": "list",
942
+ "member": {
943
+ "type": "structure",
944
+ "required": [
945
+ "s3Uri"
946
+ ],
947
+ "members": {
948
+ "s3Uri": {}
949
+ }
950
+ }
951
+ }
952
+ }
953
+ },
954
+ "Sh": {
955
+ "type": "structure",
956
+ "required": [
957
+ "s3Uri"
958
+ ],
959
+ "members": {
960
+ "s3Uri": {}
961
+ }
962
+ },
963
+ "Si": {
964
+ "type": "map",
965
+ "key": {},
966
+ "value": {}
967
+ },
968
+ "Sk": {
969
+ "type": "structure",
970
+ "required": [
971
+ "subnetIds",
972
+ "securityGroupIds"
973
+ ],
974
+ "members": {
975
+ "subnetIds": {
976
+ "type": "list",
977
+ "member": {}
978
+ },
979
+ "securityGroupIds": {
980
+ "type": "list",
981
+ "member": {}
982
+ }
983
+ }
984
+ },
985
+ "S19": {
986
+ "type": "structure",
987
+ "members": {
988
+ "trainingLoss": {
989
+ "type": "float"
990
+ }
991
+ }
992
+ },
993
+ "S1b": {
994
+ "type": "list",
995
+ "member": {
996
+ "type": "structure",
997
+ "members": {
998
+ "validationLoss": {
999
+ "type": "float"
1000
+ }
1001
+ }
1002
+ }
1003
+ },
1004
+ "S1d": {
1005
+ "type": "timestamp",
1006
+ "timestampFormat": "iso8601"
1007
+ },
1008
+ "S1k": {
1009
+ "type": "list",
1010
+ "member": {}
1011
+ },
1012
+ "S1n": {
1013
+ "type": "list",
1014
+ "member": {}
1015
+ },
1016
+ "S1p": {
1017
+ "type": "list",
1018
+ "member": {}
1019
+ },
1020
+ "S1z": {
1021
+ "type": "structure",
1022
+ "members": {
1023
+ "cloudWatchConfig": {
1024
+ "type": "structure",
1025
+ "required": [
1026
+ "logGroupName",
1027
+ "roleArn"
1028
+ ],
1029
+ "members": {
1030
+ "logGroupName": {},
1031
+ "roleArn": {},
1032
+ "largeDataDeliveryS3Config": {
1033
+ "shape": "S22"
1034
+ }
1035
+ }
1036
+ },
1037
+ "s3Config": {
1038
+ "shape": "S22"
1039
+ },
1040
+ "textDataDeliveryEnabled": {
1041
+ "type": "boolean"
1042
+ },
1043
+ "imageDataDeliveryEnabled": {
1044
+ "type": "boolean"
1045
+ },
1046
+ "embeddingDataDeliveryEnabled": {
1047
+ "type": "boolean"
1048
+ }
1049
+ }
1050
+ },
1051
+ "S22": {
1052
+ "type": "structure",
1053
+ "required": [
1054
+ "bucketName"
1055
+ ],
1056
+ "members": {
1057
+ "bucketName": {},
1058
+ "keyPrefix": {}
1059
+ }
1060
+ }
1061
+ }
1062
+ }