aws-sdk 2.987.0 → 2.991.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 (46) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/README.md +1 -1
  3. package/apis/chime-2018-05-01.min.json +148 -139
  4. package/apis/comprehend-2017-11-27.min.json +114 -97
  5. package/apis/dms-2016-01-01.min.json +3 -0
  6. package/apis/ec2-2016-11-15.min.json +48 -48
  7. package/apis/es-2015-01-01.min.json +14 -4
  8. package/apis/iot-2015-05-28.min.json +136 -119
  9. package/apis/kafkaconnect-2021-09-14.examples.json +5 -0
  10. package/apis/kafkaconnect-2021-09-14.min.json +960 -0
  11. package/apis/kafkaconnect-2021-09-14.paginators.json +22 -0
  12. package/apis/macie2-2020-01-01.min.json +159 -108
  13. package/apis/metadata.json +3 -0
  14. package/apis/opensearch-2021-01-01.min.json +14 -4
  15. package/apis/pinpoint-2016-12-01.min.json +719 -329
  16. package/apis/robomaker-2018-06-29.min.json +138 -86
  17. package/apis/s3-2006-03-01.examples.json +145 -145
  18. package/apis/s3-2006-03-01.min.json +80 -78
  19. package/apis/sagemaker-2017-07-24.min.json +71 -22
  20. package/apis/transcribe-2017-10-26.min.json +30 -6
  21. package/apis/wafv2-2019-07-29.min.json +1 -0
  22. package/clients/all.d.ts +1 -0
  23. package/clients/all.js +2 -1
  24. package/clients/chime.d.ts +10 -5
  25. package/clients/comprehend.d.ts +35 -0
  26. package/clients/dms.d.ts +14 -10
  27. package/clients/ec2.d.ts +73 -73
  28. package/clients/es.d.ts +18 -3
  29. package/clients/iot.d.ts +28 -2
  30. package/clients/kafkaconnect.d.ts +1132 -0
  31. package/clients/kafkaconnect.js +18 -0
  32. package/clients/macie2.d.ts +75 -23
  33. package/clients/opensearch.d.ts +22 -1
  34. package/clients/pinpoint.d.ts +408 -4
  35. package/clients/robomaker.d.ts +85 -4
  36. package/clients/s3.d.ts +53 -44
  37. package/clients/sagemaker.d.ts +90 -17
  38. package/clients/transcribeservice.d.ts +27 -0
  39. package/clients/wafv2.d.ts +22 -18
  40. package/dist/aws-sdk-core-react-native.js +2 -2
  41. package/dist/aws-sdk-react-native.js +55 -18
  42. package/dist/aws-sdk.js +384 -345
  43. package/dist/aws-sdk.min.js +72 -72
  44. package/lib/config_service_placeholders.d.ts +2 -0
  45. package/lib/core.js +1 -1
  46. package/package.json +1 -1
@@ -0,0 +1,960 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2021-09-14",
5
+ "endpointPrefix": "kafkaconnect",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceAbbreviation": "Kafka Connect",
9
+ "serviceFullName": "Managed Streaming for Kafka Connect",
10
+ "serviceId": "KafkaConnect",
11
+ "signatureVersion": "v4",
12
+ "signingName": "kafkaconnect",
13
+ "uid": "kafkaconnect-2021-09-14"
14
+ },
15
+ "operations": {
16
+ "CreateConnector": {
17
+ "http": {
18
+ "requestUri": "/v1/connectors",
19
+ "responseCode": 200
20
+ },
21
+ "input": {
22
+ "type": "structure",
23
+ "required": [
24
+ "capacity",
25
+ "connectorConfiguration",
26
+ "connectorName",
27
+ "kafkaCluster",
28
+ "kafkaClusterClientAuthentication",
29
+ "kafkaClusterEncryptionInTransit",
30
+ "kafkaConnectVersion",
31
+ "plugins",
32
+ "serviceExecutionRoleArn"
33
+ ],
34
+ "members": {
35
+ "capacity": {
36
+ "type": "structure",
37
+ "members": {
38
+ "autoScaling": {
39
+ "type": "structure",
40
+ "required": [
41
+ "maxWorkerCount",
42
+ "mcuCount",
43
+ "minWorkerCount"
44
+ ],
45
+ "members": {
46
+ "maxWorkerCount": {
47
+ "type": "integer"
48
+ },
49
+ "mcuCount": {
50
+ "type": "integer"
51
+ },
52
+ "minWorkerCount": {
53
+ "type": "integer"
54
+ },
55
+ "scaleInPolicy": {
56
+ "type": "structure",
57
+ "required": [
58
+ "cpuUtilizationPercentage"
59
+ ],
60
+ "members": {
61
+ "cpuUtilizationPercentage": {
62
+ "type": "integer"
63
+ }
64
+ }
65
+ },
66
+ "scaleOutPolicy": {
67
+ "type": "structure",
68
+ "required": [
69
+ "cpuUtilizationPercentage"
70
+ ],
71
+ "members": {
72
+ "cpuUtilizationPercentage": {
73
+ "type": "integer"
74
+ }
75
+ }
76
+ }
77
+ }
78
+ },
79
+ "provisionedCapacity": {
80
+ "type": "structure",
81
+ "required": [
82
+ "mcuCount",
83
+ "workerCount"
84
+ ],
85
+ "members": {
86
+ "mcuCount": {
87
+ "type": "integer"
88
+ },
89
+ "workerCount": {
90
+ "type": "integer"
91
+ }
92
+ }
93
+ }
94
+ }
95
+ },
96
+ "connectorConfiguration": {
97
+ "shape": "Sa"
98
+ },
99
+ "connectorDescription": {},
100
+ "connectorName": {},
101
+ "kafkaCluster": {
102
+ "type": "structure",
103
+ "required": [
104
+ "apacheKafkaCluster"
105
+ ],
106
+ "members": {
107
+ "apacheKafkaCluster": {
108
+ "type": "structure",
109
+ "required": [
110
+ "bootstrapServers",
111
+ "vpc"
112
+ ],
113
+ "members": {
114
+ "bootstrapServers": {},
115
+ "vpc": {
116
+ "type": "structure",
117
+ "required": [
118
+ "subnets"
119
+ ],
120
+ "members": {
121
+ "securityGroups": {
122
+ "shape": "Sh"
123
+ },
124
+ "subnets": {
125
+ "shape": "Sh"
126
+ }
127
+ }
128
+ }
129
+ }
130
+ }
131
+ }
132
+ },
133
+ "kafkaClusterClientAuthentication": {
134
+ "type": "structure",
135
+ "required": [
136
+ "authenticationType"
137
+ ],
138
+ "members": {
139
+ "authenticationType": {}
140
+ }
141
+ },
142
+ "kafkaClusterEncryptionInTransit": {
143
+ "type": "structure",
144
+ "required": [
145
+ "encryptionType"
146
+ ],
147
+ "members": {
148
+ "encryptionType": {}
149
+ }
150
+ },
151
+ "kafkaConnectVersion": {},
152
+ "logDelivery": {
153
+ "type": "structure",
154
+ "required": [
155
+ "workerLogDelivery"
156
+ ],
157
+ "members": {
158
+ "workerLogDelivery": {
159
+ "type": "structure",
160
+ "members": {
161
+ "cloudWatchLogs": {
162
+ "type": "structure",
163
+ "required": [
164
+ "enabled"
165
+ ],
166
+ "members": {
167
+ "enabled": {
168
+ "type": "boolean"
169
+ },
170
+ "logGroup": {}
171
+ }
172
+ },
173
+ "firehose": {
174
+ "type": "structure",
175
+ "required": [
176
+ "enabled"
177
+ ],
178
+ "members": {
179
+ "deliveryStream": {},
180
+ "enabled": {
181
+ "type": "boolean"
182
+ }
183
+ }
184
+ },
185
+ "s3": {
186
+ "type": "structure",
187
+ "required": [
188
+ "enabled"
189
+ ],
190
+ "members": {
191
+ "bucket": {},
192
+ "enabled": {
193
+ "type": "boolean"
194
+ },
195
+ "prefix": {}
196
+ }
197
+ }
198
+ }
199
+ }
200
+ }
201
+ },
202
+ "plugins": {
203
+ "type": "list",
204
+ "member": {
205
+ "type": "structure",
206
+ "required": [
207
+ "customPlugin"
208
+ ],
209
+ "members": {
210
+ "customPlugin": {
211
+ "type": "structure",
212
+ "required": [
213
+ "customPluginArn",
214
+ "revision"
215
+ ],
216
+ "members": {
217
+ "customPluginArn": {},
218
+ "revision": {
219
+ "type": "long"
220
+ }
221
+ }
222
+ }
223
+ }
224
+ }
225
+ },
226
+ "serviceExecutionRoleArn": {},
227
+ "workerConfiguration": {
228
+ "type": "structure",
229
+ "required": [
230
+ "revision",
231
+ "workerConfigurationArn"
232
+ ],
233
+ "members": {
234
+ "revision": {
235
+ "type": "long"
236
+ },
237
+ "workerConfigurationArn": {}
238
+ }
239
+ }
240
+ }
241
+ },
242
+ "output": {
243
+ "type": "structure",
244
+ "members": {
245
+ "connectorArn": {},
246
+ "connectorName": {},
247
+ "connectorState": {}
248
+ }
249
+ }
250
+ },
251
+ "CreateCustomPlugin": {
252
+ "http": {
253
+ "requestUri": "/v1/custom-plugins",
254
+ "responseCode": 200
255
+ },
256
+ "input": {
257
+ "type": "structure",
258
+ "required": [
259
+ "contentType",
260
+ "location",
261
+ "name"
262
+ ],
263
+ "members": {
264
+ "contentType": {},
265
+ "description": {},
266
+ "location": {
267
+ "type": "structure",
268
+ "required": [
269
+ "s3Location"
270
+ ],
271
+ "members": {
272
+ "s3Location": {
273
+ "type": "structure",
274
+ "required": [
275
+ "bucketArn",
276
+ "fileKey"
277
+ ],
278
+ "members": {
279
+ "bucketArn": {},
280
+ "fileKey": {},
281
+ "objectVersion": {}
282
+ }
283
+ }
284
+ }
285
+ },
286
+ "name": {}
287
+ }
288
+ },
289
+ "output": {
290
+ "type": "structure",
291
+ "members": {
292
+ "customPluginArn": {},
293
+ "customPluginState": {},
294
+ "name": {},
295
+ "revision": {
296
+ "type": "long"
297
+ }
298
+ }
299
+ }
300
+ },
301
+ "CreateWorkerConfiguration": {
302
+ "http": {
303
+ "requestUri": "/v1/worker-configurations",
304
+ "responseCode": 200
305
+ },
306
+ "input": {
307
+ "type": "structure",
308
+ "required": [
309
+ "name",
310
+ "propertiesFileContent"
311
+ ],
312
+ "members": {
313
+ "description": {},
314
+ "name": {},
315
+ "propertiesFileContent": {}
316
+ }
317
+ },
318
+ "output": {
319
+ "type": "structure",
320
+ "members": {
321
+ "creationTime": {
322
+ "shape": "S18"
323
+ },
324
+ "latestRevision": {
325
+ "shape": "S19"
326
+ },
327
+ "name": {},
328
+ "workerConfigurationArn": {}
329
+ }
330
+ }
331
+ },
332
+ "DeleteConnector": {
333
+ "http": {
334
+ "method": "DELETE",
335
+ "requestUri": "/v1/connectors/{connectorArn}",
336
+ "responseCode": 200
337
+ },
338
+ "input": {
339
+ "type": "structure",
340
+ "required": [
341
+ "connectorArn"
342
+ ],
343
+ "members": {
344
+ "connectorArn": {
345
+ "location": "uri",
346
+ "locationName": "connectorArn"
347
+ },
348
+ "currentVersion": {
349
+ "location": "querystring",
350
+ "locationName": "currentVersion"
351
+ }
352
+ }
353
+ },
354
+ "output": {
355
+ "type": "structure",
356
+ "members": {
357
+ "connectorArn": {},
358
+ "connectorState": {}
359
+ }
360
+ },
361
+ "idempotent": true
362
+ },
363
+ "DescribeConnector": {
364
+ "http": {
365
+ "method": "GET",
366
+ "requestUri": "/v1/connectors/{connectorArn}",
367
+ "responseCode": 200
368
+ },
369
+ "input": {
370
+ "type": "structure",
371
+ "required": [
372
+ "connectorArn"
373
+ ],
374
+ "members": {
375
+ "connectorArn": {
376
+ "location": "uri",
377
+ "locationName": "connectorArn"
378
+ }
379
+ }
380
+ },
381
+ "output": {
382
+ "type": "structure",
383
+ "members": {
384
+ "capacity": {
385
+ "shape": "S1e"
386
+ },
387
+ "connectorArn": {},
388
+ "connectorConfiguration": {
389
+ "shape": "Sa"
390
+ },
391
+ "connectorDescription": {},
392
+ "connectorName": {},
393
+ "connectorState": {},
394
+ "creationTime": {
395
+ "shape": "S18"
396
+ },
397
+ "currentVersion": {},
398
+ "kafkaCluster": {
399
+ "shape": "S1k"
400
+ },
401
+ "kafkaClusterClientAuthentication": {
402
+ "shape": "S1n"
403
+ },
404
+ "kafkaClusterEncryptionInTransit": {
405
+ "shape": "S1o"
406
+ },
407
+ "kafkaConnectVersion": {},
408
+ "logDelivery": {
409
+ "shape": "S1p"
410
+ },
411
+ "plugins": {
412
+ "shape": "S1u"
413
+ },
414
+ "serviceExecutionRoleArn": {},
415
+ "workerConfiguration": {
416
+ "shape": "S1x"
417
+ }
418
+ }
419
+ }
420
+ },
421
+ "DescribeCustomPlugin": {
422
+ "http": {
423
+ "method": "GET",
424
+ "requestUri": "/v1/custom-plugins/{customPluginArn}",
425
+ "responseCode": 200
426
+ },
427
+ "input": {
428
+ "type": "structure",
429
+ "required": [
430
+ "customPluginArn"
431
+ ],
432
+ "members": {
433
+ "customPluginArn": {
434
+ "location": "uri",
435
+ "locationName": "customPluginArn"
436
+ }
437
+ }
438
+ },
439
+ "output": {
440
+ "type": "structure",
441
+ "members": {
442
+ "creationTime": {
443
+ "shape": "S18"
444
+ },
445
+ "customPluginArn": {},
446
+ "customPluginState": {},
447
+ "description": {},
448
+ "latestRevision": {
449
+ "shape": "S20"
450
+ },
451
+ "name": {}
452
+ }
453
+ }
454
+ },
455
+ "DescribeWorkerConfiguration": {
456
+ "http": {
457
+ "method": "GET",
458
+ "requestUri": "/v1/worker-configurations/{workerConfigurationArn}",
459
+ "responseCode": 200
460
+ },
461
+ "input": {
462
+ "type": "structure",
463
+ "required": [
464
+ "workerConfigurationArn"
465
+ ],
466
+ "members": {
467
+ "workerConfigurationArn": {
468
+ "location": "uri",
469
+ "locationName": "workerConfigurationArn"
470
+ }
471
+ }
472
+ },
473
+ "output": {
474
+ "type": "structure",
475
+ "members": {
476
+ "creationTime": {
477
+ "shape": "S18"
478
+ },
479
+ "description": {},
480
+ "latestRevision": {
481
+ "type": "structure",
482
+ "members": {
483
+ "creationTime": {
484
+ "shape": "S18"
485
+ },
486
+ "description": {},
487
+ "propertiesFileContent": {},
488
+ "revision": {
489
+ "type": "long"
490
+ }
491
+ }
492
+ },
493
+ "name": {},
494
+ "workerConfigurationArn": {}
495
+ }
496
+ }
497
+ },
498
+ "ListConnectors": {
499
+ "http": {
500
+ "method": "GET",
501
+ "requestUri": "/v1/connectors",
502
+ "responseCode": 200
503
+ },
504
+ "input": {
505
+ "type": "structure",
506
+ "members": {
507
+ "connectorNamePrefix": {
508
+ "location": "querystring",
509
+ "locationName": "connectorNamePrefix"
510
+ },
511
+ "maxResults": {
512
+ "location": "querystring",
513
+ "locationName": "maxResults",
514
+ "type": "integer"
515
+ },
516
+ "nextToken": {
517
+ "location": "querystring",
518
+ "locationName": "nextToken"
519
+ }
520
+ }
521
+ },
522
+ "output": {
523
+ "type": "structure",
524
+ "members": {
525
+ "connectors": {
526
+ "type": "list",
527
+ "member": {
528
+ "type": "structure",
529
+ "members": {
530
+ "capacity": {
531
+ "shape": "S1e"
532
+ },
533
+ "connectorArn": {},
534
+ "connectorDescription": {},
535
+ "connectorName": {},
536
+ "connectorState": {},
537
+ "creationTime": {
538
+ "shape": "S18"
539
+ },
540
+ "currentVersion": {},
541
+ "kafkaCluster": {
542
+ "shape": "S1k"
543
+ },
544
+ "kafkaClusterClientAuthentication": {
545
+ "shape": "S1n"
546
+ },
547
+ "kafkaClusterEncryptionInTransit": {
548
+ "shape": "S1o"
549
+ },
550
+ "kafkaConnectVersion": {},
551
+ "logDelivery": {
552
+ "shape": "S1p"
553
+ },
554
+ "plugins": {
555
+ "shape": "S1u"
556
+ },
557
+ "serviceExecutionRoleArn": {},
558
+ "workerConfiguration": {
559
+ "shape": "S1x"
560
+ }
561
+ }
562
+ }
563
+ },
564
+ "nextToken": {}
565
+ }
566
+ }
567
+ },
568
+ "ListCustomPlugins": {
569
+ "http": {
570
+ "method": "GET",
571
+ "requestUri": "/v1/custom-plugins",
572
+ "responseCode": 200
573
+ },
574
+ "input": {
575
+ "type": "structure",
576
+ "members": {
577
+ "maxResults": {
578
+ "location": "querystring",
579
+ "locationName": "maxResults",
580
+ "type": "integer"
581
+ },
582
+ "nextToken": {
583
+ "location": "querystring",
584
+ "locationName": "nextToken"
585
+ }
586
+ }
587
+ },
588
+ "output": {
589
+ "type": "structure",
590
+ "members": {
591
+ "customPlugins": {
592
+ "type": "list",
593
+ "member": {
594
+ "type": "structure",
595
+ "members": {
596
+ "creationTime": {
597
+ "shape": "S18"
598
+ },
599
+ "customPluginArn": {},
600
+ "customPluginState": {},
601
+ "description": {},
602
+ "latestRevision": {
603
+ "shape": "S20"
604
+ },
605
+ "name": {}
606
+ }
607
+ }
608
+ },
609
+ "nextToken": {}
610
+ }
611
+ }
612
+ },
613
+ "ListWorkerConfigurations": {
614
+ "http": {
615
+ "method": "GET",
616
+ "requestUri": "/v1/worker-configurations",
617
+ "responseCode": 200
618
+ },
619
+ "input": {
620
+ "type": "structure",
621
+ "members": {
622
+ "maxResults": {
623
+ "location": "querystring",
624
+ "locationName": "maxResults",
625
+ "type": "integer"
626
+ },
627
+ "nextToken": {
628
+ "location": "querystring",
629
+ "locationName": "nextToken"
630
+ }
631
+ }
632
+ },
633
+ "output": {
634
+ "type": "structure",
635
+ "members": {
636
+ "nextToken": {},
637
+ "workerConfigurations": {
638
+ "type": "list",
639
+ "member": {
640
+ "type": "structure",
641
+ "members": {
642
+ "creationTime": {
643
+ "shape": "S18"
644
+ },
645
+ "description": {},
646
+ "latestRevision": {
647
+ "shape": "S19"
648
+ },
649
+ "name": {},
650
+ "workerConfigurationArn": {}
651
+ }
652
+ }
653
+ }
654
+ }
655
+ }
656
+ },
657
+ "UpdateConnector": {
658
+ "http": {
659
+ "method": "PUT",
660
+ "requestUri": "/v1/connectors/{connectorArn}",
661
+ "responseCode": 200
662
+ },
663
+ "input": {
664
+ "type": "structure",
665
+ "required": [
666
+ "capacity",
667
+ "connectorArn",
668
+ "currentVersion"
669
+ ],
670
+ "members": {
671
+ "capacity": {
672
+ "type": "structure",
673
+ "members": {
674
+ "autoScaling": {
675
+ "type": "structure",
676
+ "required": [
677
+ "maxWorkerCount",
678
+ "mcuCount",
679
+ "minWorkerCount",
680
+ "scaleInPolicy",
681
+ "scaleOutPolicy"
682
+ ],
683
+ "members": {
684
+ "maxWorkerCount": {
685
+ "type": "integer"
686
+ },
687
+ "mcuCount": {
688
+ "type": "integer"
689
+ },
690
+ "minWorkerCount": {
691
+ "type": "integer"
692
+ },
693
+ "scaleInPolicy": {
694
+ "type": "structure",
695
+ "required": [
696
+ "cpuUtilizationPercentage"
697
+ ],
698
+ "members": {
699
+ "cpuUtilizationPercentage": {
700
+ "type": "integer"
701
+ }
702
+ }
703
+ },
704
+ "scaleOutPolicy": {
705
+ "type": "structure",
706
+ "required": [
707
+ "cpuUtilizationPercentage"
708
+ ],
709
+ "members": {
710
+ "cpuUtilizationPercentage": {
711
+ "type": "integer"
712
+ }
713
+ }
714
+ }
715
+ }
716
+ },
717
+ "provisionedCapacity": {
718
+ "type": "structure",
719
+ "required": [
720
+ "mcuCount",
721
+ "workerCount"
722
+ ],
723
+ "members": {
724
+ "mcuCount": {
725
+ "type": "integer"
726
+ },
727
+ "workerCount": {
728
+ "type": "integer"
729
+ }
730
+ }
731
+ }
732
+ }
733
+ },
734
+ "connectorArn": {
735
+ "location": "uri",
736
+ "locationName": "connectorArn"
737
+ },
738
+ "currentVersion": {
739
+ "location": "querystring",
740
+ "locationName": "currentVersion"
741
+ }
742
+ }
743
+ },
744
+ "output": {
745
+ "type": "structure",
746
+ "members": {
747
+ "connectorArn": {},
748
+ "connectorState": {}
749
+ }
750
+ },
751
+ "idempotent": true
752
+ }
753
+ },
754
+ "shapes": {
755
+ "Sa": {
756
+ "type": "map",
757
+ "key": {},
758
+ "value": {}
759
+ },
760
+ "Sh": {
761
+ "type": "list",
762
+ "member": {}
763
+ },
764
+ "S18": {
765
+ "type": "timestamp",
766
+ "timestampFormat": "iso8601"
767
+ },
768
+ "S19": {
769
+ "type": "structure",
770
+ "members": {
771
+ "creationTime": {
772
+ "shape": "S18"
773
+ },
774
+ "description": {},
775
+ "revision": {
776
+ "type": "long"
777
+ }
778
+ }
779
+ },
780
+ "S1e": {
781
+ "type": "structure",
782
+ "members": {
783
+ "autoScaling": {
784
+ "type": "structure",
785
+ "members": {
786
+ "maxWorkerCount": {
787
+ "type": "integer"
788
+ },
789
+ "mcuCount": {
790
+ "type": "integer"
791
+ },
792
+ "minWorkerCount": {
793
+ "type": "integer"
794
+ },
795
+ "scaleInPolicy": {
796
+ "type": "structure",
797
+ "members": {
798
+ "cpuUtilizationPercentage": {
799
+ "type": "integer"
800
+ }
801
+ }
802
+ },
803
+ "scaleOutPolicy": {
804
+ "type": "structure",
805
+ "members": {
806
+ "cpuUtilizationPercentage": {
807
+ "type": "integer"
808
+ }
809
+ }
810
+ }
811
+ }
812
+ },
813
+ "provisionedCapacity": {
814
+ "type": "structure",
815
+ "members": {
816
+ "mcuCount": {
817
+ "type": "integer"
818
+ },
819
+ "workerCount": {
820
+ "type": "integer"
821
+ }
822
+ }
823
+ }
824
+ }
825
+ },
826
+ "S1k": {
827
+ "type": "structure",
828
+ "members": {
829
+ "apacheKafkaCluster": {
830
+ "type": "structure",
831
+ "members": {
832
+ "bootstrapServers": {},
833
+ "vpc": {
834
+ "type": "structure",
835
+ "members": {
836
+ "securityGroups": {
837
+ "shape": "Sh"
838
+ },
839
+ "subnets": {
840
+ "shape": "Sh"
841
+ }
842
+ }
843
+ }
844
+ }
845
+ }
846
+ }
847
+ },
848
+ "S1n": {
849
+ "type": "structure",
850
+ "members": {
851
+ "authenticationType": {}
852
+ }
853
+ },
854
+ "S1o": {
855
+ "type": "structure",
856
+ "members": {
857
+ "encryptionType": {}
858
+ }
859
+ },
860
+ "S1p": {
861
+ "type": "structure",
862
+ "members": {
863
+ "workerLogDelivery": {
864
+ "type": "structure",
865
+ "members": {
866
+ "cloudWatchLogs": {
867
+ "type": "structure",
868
+ "members": {
869
+ "enabled": {
870
+ "type": "boolean"
871
+ },
872
+ "logGroup": {}
873
+ }
874
+ },
875
+ "firehose": {
876
+ "type": "structure",
877
+ "members": {
878
+ "deliveryStream": {},
879
+ "enabled": {
880
+ "type": "boolean"
881
+ }
882
+ }
883
+ },
884
+ "s3": {
885
+ "type": "structure",
886
+ "members": {
887
+ "bucket": {},
888
+ "enabled": {
889
+ "type": "boolean"
890
+ },
891
+ "prefix": {}
892
+ }
893
+ }
894
+ }
895
+ }
896
+ }
897
+ },
898
+ "S1u": {
899
+ "type": "list",
900
+ "member": {
901
+ "type": "structure",
902
+ "members": {
903
+ "customPlugin": {
904
+ "type": "structure",
905
+ "members": {
906
+ "customPluginArn": {},
907
+ "revision": {
908
+ "type": "long"
909
+ }
910
+ }
911
+ }
912
+ }
913
+ }
914
+ },
915
+ "S1x": {
916
+ "type": "structure",
917
+ "members": {
918
+ "revision": {
919
+ "type": "long"
920
+ },
921
+ "workerConfigurationArn": {}
922
+ }
923
+ },
924
+ "S20": {
925
+ "type": "structure",
926
+ "members": {
927
+ "contentType": {},
928
+ "creationTime": {
929
+ "shape": "S18"
930
+ },
931
+ "description": {},
932
+ "fileDescription": {
933
+ "type": "structure",
934
+ "members": {
935
+ "fileMd5": {},
936
+ "fileSize": {
937
+ "type": "long"
938
+ }
939
+ }
940
+ },
941
+ "location": {
942
+ "type": "structure",
943
+ "members": {
944
+ "s3Location": {
945
+ "type": "structure",
946
+ "members": {
947
+ "bucketArn": {},
948
+ "fileKey": {},
949
+ "objectVersion": {}
950
+ }
951
+ }
952
+ }
953
+ },
954
+ "revision": {
955
+ "type": "long"
956
+ }
957
+ }
958
+ }
959
+ }
960
+ }