cdk-docker-image-deployment 0.0.68 → 0.0.69

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 (30) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +7 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/ecs-2014-11-13.examples.json +123 -0
  8. package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +76 -3
  9. package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +457 -137
  10. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  11. package/node_modules/aws-sdk/apis/scheduler-2021-06-30.examples.json +5 -0
  12. package/node_modules/aws-sdk/apis/scheduler-2021-06-30.min.json +701 -0
  13. package/node_modules/aws-sdk/apis/scheduler-2021-06-30.paginators.json +16 -0
  14. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  15. package/node_modules/aws-sdk/clients/all.js +2 -1
  16. package/node_modules/aws-sdk/clients/autoscaling.d.ts +8 -8
  17. package/node_modules/aws-sdk/clients/ec2.d.ts +5 -5
  18. package/node_modules/aws-sdk/clients/ecs.d.ts +79 -0
  19. package/node_modules/aws-sdk/clients/es.d.ts +301 -0
  20. package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +2 -2
  21. package/node_modules/aws-sdk/clients/scheduler.d.ts +829 -0
  22. package/node_modules/aws-sdk/clients/scheduler.js +18 -0
  23. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  24. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +43 -6
  25. package/node_modules/aws-sdk/dist/aws-sdk.js +82 -6
  26. package/node_modules/aws-sdk/dist/aws-sdk.min.js +58 -58
  27. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  28. package/node_modules/aws-sdk/lib/core.js +1 -1
  29. package/node_modules/aws-sdk/package.json +1 -1
  30. package/package.json +4 -4
@@ -1207,5 +1207,8 @@
1207
1207
  "resourceexplorer2": {
1208
1208
  "prefix": "resource-explorer-2",
1209
1209
  "name": "ResourceExplorer2"
1210
+ },
1211
+ "scheduler": {
1212
+ "name": "Scheduler"
1210
1213
  }
1211
1214
  }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,701 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2021-06-30",
5
+ "endpointPrefix": "scheduler",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "Amazon EventBridge Scheduler",
9
+ "serviceId": "Scheduler",
10
+ "signatureVersion": "v4",
11
+ "signingName": "scheduler",
12
+ "uid": "scheduler-2021-06-30"
13
+ },
14
+ "operations": {
15
+ "CreateSchedule": {
16
+ "http": {
17
+ "requestUri": "/schedules/{Name}",
18
+ "responseCode": 200
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "FlexibleTimeWindow",
24
+ "Name",
25
+ "ScheduleExpression",
26
+ "Target"
27
+ ],
28
+ "members": {
29
+ "ClientToken": {
30
+ "idempotencyToken": true
31
+ },
32
+ "Description": {},
33
+ "EndDate": {
34
+ "type": "timestamp"
35
+ },
36
+ "FlexibleTimeWindow": {
37
+ "shape": "S5"
38
+ },
39
+ "GroupName": {},
40
+ "KmsKeyArn": {},
41
+ "Name": {
42
+ "location": "uri",
43
+ "locationName": "Name"
44
+ },
45
+ "ScheduleExpression": {},
46
+ "ScheduleExpressionTimezone": {},
47
+ "StartDate": {
48
+ "type": "timestamp"
49
+ },
50
+ "State": {},
51
+ "Target": {
52
+ "shape": "Sf"
53
+ }
54
+ }
55
+ },
56
+ "output": {
57
+ "type": "structure",
58
+ "required": [
59
+ "ScheduleArn"
60
+ ],
61
+ "members": {
62
+ "ScheduleArn": {}
63
+ }
64
+ },
65
+ "idempotent": true
66
+ },
67
+ "CreateScheduleGroup": {
68
+ "http": {
69
+ "requestUri": "/schedule-groups/{Name}",
70
+ "responseCode": 200
71
+ },
72
+ "input": {
73
+ "type": "structure",
74
+ "required": [
75
+ "Name"
76
+ ],
77
+ "members": {
78
+ "ClientToken": {
79
+ "idempotencyToken": true
80
+ },
81
+ "Name": {
82
+ "location": "uri",
83
+ "locationName": "Name"
84
+ },
85
+ "Tags": {
86
+ "shape": "S21"
87
+ }
88
+ }
89
+ },
90
+ "output": {
91
+ "type": "structure",
92
+ "required": [
93
+ "ScheduleGroupArn"
94
+ ],
95
+ "members": {
96
+ "ScheduleGroupArn": {}
97
+ }
98
+ },
99
+ "idempotent": true
100
+ },
101
+ "DeleteSchedule": {
102
+ "http": {
103
+ "method": "DELETE",
104
+ "requestUri": "/schedules/{Name}",
105
+ "responseCode": 200
106
+ },
107
+ "input": {
108
+ "type": "structure",
109
+ "required": [
110
+ "Name"
111
+ ],
112
+ "members": {
113
+ "ClientToken": {
114
+ "idempotencyToken": true,
115
+ "location": "querystring",
116
+ "locationName": "clientToken"
117
+ },
118
+ "GroupName": {
119
+ "location": "querystring",
120
+ "locationName": "groupName"
121
+ },
122
+ "Name": {
123
+ "location": "uri",
124
+ "locationName": "Name"
125
+ }
126
+ }
127
+ },
128
+ "output": {
129
+ "type": "structure",
130
+ "members": {}
131
+ },
132
+ "idempotent": true
133
+ },
134
+ "DeleteScheduleGroup": {
135
+ "http": {
136
+ "method": "DELETE",
137
+ "requestUri": "/schedule-groups/{Name}",
138
+ "responseCode": 200
139
+ },
140
+ "input": {
141
+ "type": "structure",
142
+ "required": [
143
+ "Name"
144
+ ],
145
+ "members": {
146
+ "ClientToken": {
147
+ "idempotencyToken": true,
148
+ "location": "querystring",
149
+ "locationName": "clientToken"
150
+ },
151
+ "Name": {
152
+ "location": "uri",
153
+ "locationName": "Name"
154
+ }
155
+ }
156
+ },
157
+ "output": {
158
+ "type": "structure",
159
+ "members": {}
160
+ },
161
+ "idempotent": true
162
+ },
163
+ "GetSchedule": {
164
+ "http": {
165
+ "method": "GET",
166
+ "requestUri": "/schedules/{Name}",
167
+ "responseCode": 200
168
+ },
169
+ "input": {
170
+ "type": "structure",
171
+ "required": [
172
+ "Name"
173
+ ],
174
+ "members": {
175
+ "GroupName": {
176
+ "location": "querystring",
177
+ "locationName": "groupName"
178
+ },
179
+ "Name": {
180
+ "location": "uri",
181
+ "locationName": "Name"
182
+ }
183
+ }
184
+ },
185
+ "output": {
186
+ "type": "structure",
187
+ "members": {
188
+ "Arn": {},
189
+ "CreationDate": {
190
+ "type": "timestamp"
191
+ },
192
+ "Description": {},
193
+ "EndDate": {
194
+ "type": "timestamp"
195
+ },
196
+ "FlexibleTimeWindow": {
197
+ "shape": "S5"
198
+ },
199
+ "GroupName": {},
200
+ "KmsKeyArn": {},
201
+ "LastModificationDate": {
202
+ "type": "timestamp"
203
+ },
204
+ "Name": {},
205
+ "ScheduleExpression": {},
206
+ "ScheduleExpressionTimezone": {},
207
+ "StartDate": {
208
+ "type": "timestamp"
209
+ },
210
+ "State": {},
211
+ "Target": {
212
+ "shape": "Sf"
213
+ }
214
+ }
215
+ }
216
+ },
217
+ "GetScheduleGroup": {
218
+ "http": {
219
+ "method": "GET",
220
+ "requestUri": "/schedule-groups/{Name}",
221
+ "responseCode": 200
222
+ },
223
+ "input": {
224
+ "type": "structure",
225
+ "required": [
226
+ "Name"
227
+ ],
228
+ "members": {
229
+ "Name": {
230
+ "location": "uri",
231
+ "locationName": "Name"
232
+ }
233
+ }
234
+ },
235
+ "output": {
236
+ "type": "structure",
237
+ "members": {
238
+ "Arn": {},
239
+ "CreationDate": {
240
+ "type": "timestamp"
241
+ },
242
+ "LastModificationDate": {
243
+ "type": "timestamp"
244
+ },
245
+ "Name": {},
246
+ "State": {}
247
+ }
248
+ }
249
+ },
250
+ "ListScheduleGroups": {
251
+ "http": {
252
+ "method": "GET",
253
+ "requestUri": "/schedule-groups",
254
+ "responseCode": 200
255
+ },
256
+ "input": {
257
+ "type": "structure",
258
+ "members": {
259
+ "MaxResults": {
260
+ "location": "querystring",
261
+ "locationName": "MaxResults",
262
+ "type": "integer"
263
+ },
264
+ "NamePrefix": {
265
+ "location": "querystring",
266
+ "locationName": "NamePrefix"
267
+ },
268
+ "NextToken": {
269
+ "location": "querystring",
270
+ "locationName": "NextToken"
271
+ }
272
+ }
273
+ },
274
+ "output": {
275
+ "type": "structure",
276
+ "required": [
277
+ "ScheduleGroups"
278
+ ],
279
+ "members": {
280
+ "NextToken": {},
281
+ "ScheduleGroups": {
282
+ "type": "list",
283
+ "member": {
284
+ "type": "structure",
285
+ "members": {
286
+ "Arn": {},
287
+ "CreationDate": {
288
+ "type": "timestamp"
289
+ },
290
+ "LastModificationDate": {
291
+ "type": "timestamp"
292
+ },
293
+ "Name": {},
294
+ "State": {}
295
+ }
296
+ }
297
+ }
298
+ }
299
+ }
300
+ },
301
+ "ListSchedules": {
302
+ "http": {
303
+ "method": "GET",
304
+ "requestUri": "/schedules",
305
+ "responseCode": 200
306
+ },
307
+ "input": {
308
+ "type": "structure",
309
+ "members": {
310
+ "GroupName": {
311
+ "location": "querystring",
312
+ "locationName": "ScheduleGroup"
313
+ },
314
+ "MaxResults": {
315
+ "location": "querystring",
316
+ "locationName": "MaxResults",
317
+ "type": "integer"
318
+ },
319
+ "NamePrefix": {
320
+ "location": "querystring",
321
+ "locationName": "NamePrefix"
322
+ },
323
+ "NextToken": {
324
+ "location": "querystring",
325
+ "locationName": "NextToken"
326
+ },
327
+ "State": {
328
+ "location": "querystring",
329
+ "locationName": "State"
330
+ }
331
+ }
332
+ },
333
+ "output": {
334
+ "type": "structure",
335
+ "required": [
336
+ "Schedules"
337
+ ],
338
+ "members": {
339
+ "NextToken": {},
340
+ "Schedules": {
341
+ "type": "list",
342
+ "member": {
343
+ "type": "structure",
344
+ "members": {
345
+ "Arn": {},
346
+ "CreationDate": {
347
+ "type": "timestamp"
348
+ },
349
+ "GroupName": {},
350
+ "LastModificationDate": {
351
+ "type": "timestamp"
352
+ },
353
+ "Name": {},
354
+ "State": {},
355
+ "Target": {
356
+ "type": "structure",
357
+ "required": [
358
+ "Arn"
359
+ ],
360
+ "members": {
361
+ "Arn": {}
362
+ }
363
+ }
364
+ }
365
+ }
366
+ }
367
+ }
368
+ }
369
+ },
370
+ "ListTagsForResource": {
371
+ "http": {
372
+ "method": "GET",
373
+ "requestUri": "/tags/{ResourceArn}",
374
+ "responseCode": 200
375
+ },
376
+ "input": {
377
+ "type": "structure",
378
+ "required": [
379
+ "ResourceArn"
380
+ ],
381
+ "members": {
382
+ "ResourceArn": {
383
+ "location": "uri",
384
+ "locationName": "ResourceArn"
385
+ }
386
+ }
387
+ },
388
+ "output": {
389
+ "type": "structure",
390
+ "members": {
391
+ "Tags": {
392
+ "shape": "S21"
393
+ }
394
+ }
395
+ }
396
+ },
397
+ "TagResource": {
398
+ "http": {
399
+ "requestUri": "/tags/{ResourceArn}",
400
+ "responseCode": 200
401
+ },
402
+ "input": {
403
+ "type": "structure",
404
+ "required": [
405
+ "ResourceArn",
406
+ "Tags"
407
+ ],
408
+ "members": {
409
+ "ResourceArn": {
410
+ "location": "uri",
411
+ "locationName": "ResourceArn"
412
+ },
413
+ "Tags": {
414
+ "shape": "S21"
415
+ }
416
+ }
417
+ },
418
+ "output": {
419
+ "type": "structure",
420
+ "members": {}
421
+ }
422
+ },
423
+ "UntagResource": {
424
+ "http": {
425
+ "method": "DELETE",
426
+ "requestUri": "/tags/{ResourceArn}",
427
+ "responseCode": 200
428
+ },
429
+ "input": {
430
+ "type": "structure",
431
+ "required": [
432
+ "ResourceArn",
433
+ "TagKeys"
434
+ ],
435
+ "members": {
436
+ "ResourceArn": {
437
+ "location": "uri",
438
+ "locationName": "ResourceArn"
439
+ },
440
+ "TagKeys": {
441
+ "location": "querystring",
442
+ "locationName": "TagKeys",
443
+ "type": "list",
444
+ "member": {}
445
+ }
446
+ }
447
+ },
448
+ "output": {
449
+ "type": "structure",
450
+ "members": {}
451
+ },
452
+ "idempotent": true
453
+ },
454
+ "UpdateSchedule": {
455
+ "http": {
456
+ "method": "PUT",
457
+ "requestUri": "/schedules/{Name}",
458
+ "responseCode": 200
459
+ },
460
+ "input": {
461
+ "type": "structure",
462
+ "required": [
463
+ "FlexibleTimeWindow",
464
+ "Name",
465
+ "ScheduleExpression",
466
+ "Target"
467
+ ],
468
+ "members": {
469
+ "ClientToken": {
470
+ "idempotencyToken": true
471
+ },
472
+ "Description": {},
473
+ "EndDate": {
474
+ "type": "timestamp"
475
+ },
476
+ "FlexibleTimeWindow": {
477
+ "shape": "S5"
478
+ },
479
+ "GroupName": {},
480
+ "KmsKeyArn": {},
481
+ "Name": {
482
+ "location": "uri",
483
+ "locationName": "Name"
484
+ },
485
+ "ScheduleExpression": {},
486
+ "ScheduleExpressionTimezone": {},
487
+ "StartDate": {
488
+ "type": "timestamp"
489
+ },
490
+ "State": {},
491
+ "Target": {
492
+ "shape": "Sf"
493
+ }
494
+ }
495
+ },
496
+ "output": {
497
+ "type": "structure",
498
+ "required": [
499
+ "ScheduleArn"
500
+ ],
501
+ "members": {
502
+ "ScheduleArn": {}
503
+ }
504
+ },
505
+ "idempotent": true
506
+ }
507
+ },
508
+ "shapes": {
509
+ "S5": {
510
+ "type": "structure",
511
+ "required": [
512
+ "Mode"
513
+ ],
514
+ "members": {
515
+ "MaximumWindowInMinutes": {
516
+ "type": "integer"
517
+ },
518
+ "Mode": {}
519
+ }
520
+ },
521
+ "Sf": {
522
+ "type": "structure",
523
+ "required": [
524
+ "Arn",
525
+ "RoleArn"
526
+ ],
527
+ "members": {
528
+ "Arn": {},
529
+ "DeadLetterConfig": {
530
+ "type": "structure",
531
+ "members": {
532
+ "Arn": {}
533
+ }
534
+ },
535
+ "EcsParameters": {
536
+ "type": "structure",
537
+ "required": [
538
+ "TaskDefinitionArn"
539
+ ],
540
+ "members": {
541
+ "CapacityProviderStrategy": {
542
+ "type": "list",
543
+ "member": {
544
+ "type": "structure",
545
+ "required": [
546
+ "capacityProvider"
547
+ ],
548
+ "members": {
549
+ "base": {
550
+ "type": "integer"
551
+ },
552
+ "capacityProvider": {},
553
+ "weight": {
554
+ "type": "integer"
555
+ }
556
+ }
557
+ }
558
+ },
559
+ "EnableECSManagedTags": {
560
+ "type": "boolean"
561
+ },
562
+ "EnableExecuteCommand": {
563
+ "type": "boolean"
564
+ },
565
+ "Group": {},
566
+ "LaunchType": {},
567
+ "NetworkConfiguration": {
568
+ "type": "structure",
569
+ "members": {
570
+ "awsvpcConfiguration": {
571
+ "type": "structure",
572
+ "required": [
573
+ "Subnets"
574
+ ],
575
+ "members": {
576
+ "AssignPublicIp": {},
577
+ "SecurityGroups": {
578
+ "type": "list",
579
+ "member": {}
580
+ },
581
+ "Subnets": {
582
+ "type": "list",
583
+ "member": {}
584
+ }
585
+ }
586
+ }
587
+ }
588
+ },
589
+ "PlacementConstraints": {
590
+ "type": "list",
591
+ "member": {
592
+ "type": "structure",
593
+ "members": {
594
+ "expression": {},
595
+ "type": {}
596
+ }
597
+ }
598
+ },
599
+ "PlacementStrategy": {
600
+ "type": "list",
601
+ "member": {
602
+ "type": "structure",
603
+ "members": {
604
+ "field": {},
605
+ "type": {}
606
+ }
607
+ }
608
+ },
609
+ "PlatformVersion": {},
610
+ "PropagateTags": {},
611
+ "ReferenceId": {},
612
+ "Tags": {
613
+ "type": "list",
614
+ "member": {
615
+ "type": "map",
616
+ "key": {},
617
+ "value": {}
618
+ }
619
+ },
620
+ "TaskCount": {
621
+ "type": "integer"
622
+ },
623
+ "TaskDefinitionArn": {}
624
+ }
625
+ },
626
+ "EventBridgeParameters": {
627
+ "type": "structure",
628
+ "required": [
629
+ "DetailType",
630
+ "Source"
631
+ ],
632
+ "members": {
633
+ "DetailType": {},
634
+ "Source": {}
635
+ }
636
+ },
637
+ "Input": {},
638
+ "KinesisParameters": {
639
+ "type": "structure",
640
+ "required": [
641
+ "PartitionKey"
642
+ ],
643
+ "members": {
644
+ "PartitionKey": {}
645
+ }
646
+ },
647
+ "RetryPolicy": {
648
+ "type": "structure",
649
+ "members": {
650
+ "MaximumEventAgeInSeconds": {
651
+ "type": "integer"
652
+ },
653
+ "MaximumRetryAttempts": {
654
+ "type": "integer"
655
+ }
656
+ }
657
+ },
658
+ "RoleArn": {},
659
+ "SageMakerPipelineParameters": {
660
+ "type": "structure",
661
+ "members": {
662
+ "PipelineParameterList": {
663
+ "type": "list",
664
+ "member": {
665
+ "type": "structure",
666
+ "required": [
667
+ "Name",
668
+ "Value"
669
+ ],
670
+ "members": {
671
+ "Name": {},
672
+ "Value": {}
673
+ }
674
+ }
675
+ }
676
+ }
677
+ },
678
+ "SqsParameters": {
679
+ "type": "structure",
680
+ "members": {
681
+ "MessageGroupId": {}
682
+ }
683
+ }
684
+ }
685
+ },
686
+ "S21": {
687
+ "type": "list",
688
+ "member": {
689
+ "type": "structure",
690
+ "required": [
691
+ "Key",
692
+ "Value"
693
+ ],
694
+ "members": {
695
+ "Key": {},
696
+ "Value": {}
697
+ }
698
+ }
699
+ }
700
+ }
701
+ }