cdk-docker-image-deployment 0.0.46 → 0.0.48

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 (44) hide show
  1. package/.jsii +4 -4
  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 +19 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +30 -27
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +377 -134
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +140 -125
  11. package/node_modules/aws-sdk/apis/eventbridge-2015-10-07.min.json +5 -1
  12. package/node_modules/aws-sdk/apis/globalaccelerator-2018-08-08.min.json +163 -109
  13. package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.min.json +173 -49
  14. package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.paginators.json +6 -0
  15. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +2 -1
  16. package/node_modules/aws-sdk/apis/rum-2018-05-10.min.json +360 -12
  17. package/node_modules/aws-sdk/apis/rum-2018-05-10.paginators.json +12 -0
  18. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +132 -132
  19. package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +311 -1
  20. package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +533 -12
  21. package/node_modules/aws-sdk/apis/support-app-2021-08-20.min.json +28 -1
  22. package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.min.json +290 -63
  23. package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.paginators.json +5 -0
  24. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +3 -3
  25. package/node_modules/aws-sdk/clients/cloudtrail.d.ts +54 -40
  26. package/node_modules/aws-sdk/clients/configservice.d.ts +24 -24
  27. package/node_modules/aws-sdk/clients/connect.d.ts +327 -55
  28. package/node_modules/aws-sdk/clients/devopsguru.d.ts +26 -4
  29. package/node_modules/aws-sdk/clients/globalaccelerator.d.ts +60 -3
  30. package/node_modules/aws-sdk/clients/managedblockchain.d.ts +191 -46
  31. package/node_modules/aws-sdk/clients/resiliencehub.d.ts +7 -3
  32. package/node_modules/aws-sdk/clients/rum.d.ts +340 -5
  33. package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
  34. package/node_modules/aws-sdk/clients/supportapp.d.ts +48 -10
  35. package/node_modules/aws-sdk/clients/workspacesweb.d.ts +199 -1
  36. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +9 -5
  37. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +25 -21
  38. package/node_modules/aws-sdk/dist/aws-sdk.js +735 -169
  39. package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
  40. package/node_modules/aws-sdk/lib/core.js +1 -1
  41. package/node_modules/aws-sdk/lib/event_listeners.js +7 -4
  42. package/node_modules/aws-sdk/lib/model/api.js +1 -0
  43. package/node_modules/aws-sdk/package.json +1 -1
  44. package/package.json +9 -9
@@ -12,6 +12,172 @@
12
12
  "uid": "rum-2018-05-10"
13
13
  },
14
14
  "operations": {
15
+ "BatchCreateRumMetricDefinitions": {
16
+ "http": {
17
+ "requestUri": "/rummetrics/{AppMonitorName}/metrics",
18
+ "responseCode": 200
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "AppMonitorName",
24
+ "Destination",
25
+ "MetricDefinitions"
26
+ ],
27
+ "members": {
28
+ "AppMonitorName": {
29
+ "location": "uri",
30
+ "locationName": "AppMonitorName"
31
+ },
32
+ "Destination": {},
33
+ "DestinationArn": {},
34
+ "MetricDefinitions": {
35
+ "type": "list",
36
+ "member": {
37
+ "shape": "S6"
38
+ }
39
+ }
40
+ }
41
+ },
42
+ "output": {
43
+ "type": "structure",
44
+ "required": [
45
+ "Errors"
46
+ ],
47
+ "members": {
48
+ "Errors": {
49
+ "type": "list",
50
+ "member": {
51
+ "type": "structure",
52
+ "required": [
53
+ "ErrorCode",
54
+ "ErrorMessage",
55
+ "MetricDefinition"
56
+ ],
57
+ "members": {
58
+ "ErrorCode": {},
59
+ "ErrorMessage": {},
60
+ "MetricDefinition": {
61
+ "shape": "S6"
62
+ }
63
+ }
64
+ }
65
+ },
66
+ "MetricDefinitions": {
67
+ "shape": "Si"
68
+ }
69
+ }
70
+ },
71
+ "idempotent": true
72
+ },
73
+ "BatchDeleteRumMetricDefinitions": {
74
+ "http": {
75
+ "method": "DELETE",
76
+ "requestUri": "/rummetrics/{AppMonitorName}/metrics",
77
+ "responseCode": 200
78
+ },
79
+ "input": {
80
+ "type": "structure",
81
+ "required": [
82
+ "AppMonitorName",
83
+ "Destination",
84
+ "MetricDefinitionIds"
85
+ ],
86
+ "members": {
87
+ "AppMonitorName": {
88
+ "location": "uri",
89
+ "locationName": "AppMonitorName"
90
+ },
91
+ "Destination": {
92
+ "location": "querystring",
93
+ "locationName": "destination"
94
+ },
95
+ "DestinationArn": {
96
+ "location": "querystring",
97
+ "locationName": "destinationArn"
98
+ },
99
+ "MetricDefinitionIds": {
100
+ "shape": "Sm",
101
+ "location": "querystring",
102
+ "locationName": "metricDefinitionIds"
103
+ }
104
+ }
105
+ },
106
+ "output": {
107
+ "type": "structure",
108
+ "required": [
109
+ "Errors"
110
+ ],
111
+ "members": {
112
+ "Errors": {
113
+ "type": "list",
114
+ "member": {
115
+ "type": "structure",
116
+ "required": [
117
+ "ErrorCode",
118
+ "ErrorMessage",
119
+ "MetricDefinitionId"
120
+ ],
121
+ "members": {
122
+ "ErrorCode": {},
123
+ "ErrorMessage": {},
124
+ "MetricDefinitionId": {}
125
+ }
126
+ }
127
+ },
128
+ "MetricDefinitionIds": {
129
+ "shape": "Sm"
130
+ }
131
+ }
132
+ },
133
+ "idempotent": true
134
+ },
135
+ "BatchGetRumMetricDefinitions": {
136
+ "http": {
137
+ "method": "GET",
138
+ "requestUri": "/rummetrics/{AppMonitorName}/metrics",
139
+ "responseCode": 200
140
+ },
141
+ "input": {
142
+ "type": "structure",
143
+ "required": [
144
+ "AppMonitorName",
145
+ "Destination"
146
+ ],
147
+ "members": {
148
+ "AppMonitorName": {
149
+ "location": "uri",
150
+ "locationName": "AppMonitorName"
151
+ },
152
+ "Destination": {
153
+ "location": "querystring",
154
+ "locationName": "destination"
155
+ },
156
+ "DestinationArn": {
157
+ "location": "querystring",
158
+ "locationName": "destinationArn"
159
+ },
160
+ "MaxResults": {
161
+ "location": "querystring",
162
+ "locationName": "maxResults",
163
+ "type": "integer"
164
+ },
165
+ "NextToken": {
166
+ "location": "querystring",
167
+ "locationName": "nextToken"
168
+ }
169
+ }
170
+ },
171
+ "output": {
172
+ "type": "structure",
173
+ "members": {
174
+ "MetricDefinitions": {
175
+ "shape": "Si"
176
+ },
177
+ "NextToken": {}
178
+ }
179
+ }
180
+ },
15
181
  "CreateAppMonitor": {
16
182
  "http": {
17
183
  "requestUri": "/appmonitor",
@@ -25,7 +191,7 @@
25
191
  ],
26
192
  "members": {
27
193
  "AppMonitorConfiguration": {
28
- "shape": "S2"
194
+ "shape": "Su"
29
195
  },
30
196
  "CwLogEnabled": {
31
197
  "type": "boolean"
@@ -33,7 +199,7 @@
33
199
  "Domain": {},
34
200
  "Name": {},
35
201
  "Tags": {
36
- "shape": "Sf"
202
+ "shape": "S15"
37
203
  }
38
204
  }
39
205
  },
@@ -69,6 +235,39 @@
69
235
  },
70
236
  "idempotent": true
71
237
  },
238
+ "DeleteRumMetricsDestination": {
239
+ "http": {
240
+ "method": "DELETE",
241
+ "requestUri": "/rummetrics/{AppMonitorName}/metricsdestination",
242
+ "responseCode": 200
243
+ },
244
+ "input": {
245
+ "type": "structure",
246
+ "required": [
247
+ "AppMonitorName",
248
+ "Destination"
249
+ ],
250
+ "members": {
251
+ "AppMonitorName": {
252
+ "location": "uri",
253
+ "locationName": "AppMonitorName"
254
+ },
255
+ "Destination": {
256
+ "location": "querystring",
257
+ "locationName": "destination"
258
+ },
259
+ "DestinationArn": {
260
+ "location": "querystring",
261
+ "locationName": "destinationArn"
262
+ }
263
+ }
264
+ },
265
+ "output": {
266
+ "type": "structure",
267
+ "members": {}
268
+ },
269
+ "idempotent": true
270
+ },
72
271
  "GetAppMonitor": {
73
272
  "http": {
74
273
  "method": "GET",
@@ -94,7 +293,7 @@
94
293
  "type": "structure",
95
294
  "members": {
96
295
  "AppMonitorConfiguration": {
97
- "shape": "S2"
296
+ "shape": "Su"
98
297
  },
99
298
  "Created": {},
100
299
  "DataStorage": {
@@ -117,7 +316,7 @@
117
316
  "Name": {},
118
317
  "State": {},
119
318
  "Tags": {
120
- "shape": "Sf"
319
+ "shape": "S15"
121
320
  }
122
321
  }
123
322
  }
@@ -223,6 +422,51 @@
223
422
  }
224
423
  }
225
424
  },
425
+ "ListRumMetricsDestinations": {
426
+ "http": {
427
+ "method": "GET",
428
+ "requestUri": "/rummetrics/{AppMonitorName}/metricsdestination",
429
+ "responseCode": 200
430
+ },
431
+ "input": {
432
+ "type": "structure",
433
+ "required": [
434
+ "AppMonitorName"
435
+ ],
436
+ "members": {
437
+ "AppMonitorName": {
438
+ "location": "uri",
439
+ "locationName": "AppMonitorName"
440
+ },
441
+ "MaxResults": {
442
+ "location": "querystring",
443
+ "locationName": "maxResults",
444
+ "type": "integer"
445
+ },
446
+ "NextToken": {
447
+ "location": "querystring",
448
+ "locationName": "nextToken"
449
+ }
450
+ }
451
+ },
452
+ "output": {
453
+ "type": "structure",
454
+ "members": {
455
+ "Destinations": {
456
+ "type": "list",
457
+ "member": {
458
+ "type": "structure",
459
+ "members": {
460
+ "Destination": {},
461
+ "DestinationArn": {},
462
+ "IamRoleArn": {}
463
+ }
464
+ }
465
+ },
466
+ "NextToken": {}
467
+ }
468
+ }
469
+ },
226
470
  "ListTagsForResource": {
227
471
  "http": {
228
472
  "method": "GET",
@@ -250,7 +494,7 @@
250
494
  "members": {
251
495
  "ResourceArn": {},
252
496
  "Tags": {
253
- "shape": "Sf"
497
+ "shape": "S15"
254
498
  }
255
499
  }
256
500
  }
@@ -325,6 +569,33 @@
325
569
  "hostPrefix": "dataplane."
326
570
  }
327
571
  },
572
+ "PutRumMetricsDestination": {
573
+ "http": {
574
+ "requestUri": "/rummetrics/{AppMonitorName}/metricsdestination",
575
+ "responseCode": 200
576
+ },
577
+ "input": {
578
+ "type": "structure",
579
+ "required": [
580
+ "AppMonitorName",
581
+ "Destination"
582
+ ],
583
+ "members": {
584
+ "AppMonitorName": {
585
+ "location": "uri",
586
+ "locationName": "AppMonitorName"
587
+ },
588
+ "Destination": {},
589
+ "DestinationArn": {},
590
+ "IamRoleArn": {}
591
+ }
592
+ },
593
+ "output": {
594
+ "type": "structure",
595
+ "members": {}
596
+ },
597
+ "idempotent": true
598
+ },
328
599
  "TagResource": {
329
600
  "http": {
330
601
  "requestUri": "/tags/{ResourceArn}",
@@ -342,7 +613,7 @@
342
613
  "locationName": "ResourceArn"
343
614
  },
344
615
  "Tags": {
345
- "shape": "Sf"
616
+ "shape": "S15"
346
617
  }
347
618
  }
348
619
  },
@@ -396,7 +667,7 @@
396
667
  ],
397
668
  "members": {
398
669
  "AppMonitorConfiguration": {
399
- "shape": "S2"
670
+ "shape": "Su"
400
671
  },
401
672
  "CwLogEnabled": {
402
673
  "type": "boolean"
@@ -412,10 +683,87 @@
412
683
  "type": "structure",
413
684
  "members": {}
414
685
  }
686
+ },
687
+ "UpdateRumMetricDefinition": {
688
+ "http": {
689
+ "method": "PATCH",
690
+ "requestUri": "/rummetrics/{AppMonitorName}/metrics",
691
+ "responseCode": 200
692
+ },
693
+ "input": {
694
+ "type": "structure",
695
+ "required": [
696
+ "AppMonitorName",
697
+ "Destination",
698
+ "MetricDefinition",
699
+ "MetricDefinitionId"
700
+ ],
701
+ "members": {
702
+ "AppMonitorName": {
703
+ "location": "uri",
704
+ "locationName": "AppMonitorName"
705
+ },
706
+ "Destination": {},
707
+ "DestinationArn": {},
708
+ "MetricDefinition": {
709
+ "shape": "S6"
710
+ },
711
+ "MetricDefinitionId": {}
712
+ }
713
+ },
714
+ "output": {
715
+ "type": "structure",
716
+ "members": {}
717
+ },
718
+ "idempotent": true
415
719
  }
416
720
  },
417
721
  "shapes": {
418
- "S2": {
722
+ "S6": {
723
+ "type": "structure",
724
+ "required": [
725
+ "Name"
726
+ ],
727
+ "members": {
728
+ "DimensionKeys": {
729
+ "shape": "S7"
730
+ },
731
+ "EventPattern": {},
732
+ "Name": {},
733
+ "UnitLabel": {},
734
+ "ValueKey": {}
735
+ }
736
+ },
737
+ "S7": {
738
+ "type": "map",
739
+ "key": {},
740
+ "value": {}
741
+ },
742
+ "Si": {
743
+ "type": "list",
744
+ "member": {
745
+ "type": "structure",
746
+ "required": [
747
+ "MetricDefinitionId",
748
+ "Name"
749
+ ],
750
+ "members": {
751
+ "DimensionKeys": {
752
+ "shape": "S7"
753
+ },
754
+ "EventPattern": {},
755
+ "MetricDefinitionId": {},
756
+ "Name": {},
757
+ "UnitLabel": {},
758
+ "ValueKey": {}
759
+ }
760
+ }
761
+ },
762
+ "Sm": {
763
+ "type": "list",
764
+ "member": {}
765
+ },
766
+ "Su": {
419
767
  "type": "structure",
420
768
  "members": {
421
769
  "AllowCookies": {
@@ -425,7 +773,7 @@
425
773
  "type": "boolean"
426
774
  },
427
775
  "ExcludedPages": {
428
- "shape": "S4"
776
+ "shape": "Sw"
429
777
  },
430
778
  "FavoritePages": {
431
779
  "type": "list",
@@ -434,7 +782,7 @@
434
782
  "GuestRoleArn": {},
435
783
  "IdentityPoolId": {},
436
784
  "IncludedPages": {
437
- "shape": "S4"
785
+ "shape": "Sw"
438
786
  },
439
787
  "SessionSampleRate": {
440
788
  "type": "double"
@@ -445,11 +793,11 @@
445
793
  }
446
794
  }
447
795
  },
448
- "S4": {
796
+ "Sw": {
449
797
  "type": "list",
450
798
  "member": {}
451
799
  },
452
- "Sf": {
800
+ "S15": {
453
801
  "type": "map",
454
802
  "key": {},
455
803
  "value": {}
@@ -1,5 +1,11 @@
1
1
  {
2
2
  "pagination": {
3
+ "BatchGetRumMetricDefinitions": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults",
7
+ "result_key": "MetricDefinitions"
8
+ },
3
9
  "GetAppMonitorData": {
4
10
  "input_token": "NextToken",
5
11
  "output_token": "NextToken",
@@ -11,6 +17,12 @@
11
17
  "output_token": "NextToken",
12
18
  "limit_key": "MaxResults",
13
19
  "result_key": "AppMonitorSummaries"
20
+ },
21
+ "ListRumMetricsDestinations": {
22
+ "input_token": "NextToken",
23
+ "output_token": "NextToken",
24
+ "limit_key": "MaxResults",
25
+ "result_key": "Destinations"
14
26
  }
15
27
  }
16
28
  }