cdk-docker-image-deployment 0.0.110 → 0.0.112

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 (41) 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 +17 -1
  6. package/node_modules/aws-sdk/README.md +2 -2
  7. package/node_modules/aws-sdk/apis/compute-optimizer-2019-11-01.min.json +311 -42
  8. package/node_modules/aws-sdk/apis/compute-optimizer-2019-11-01.paginators.json +30 -0
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +73 -6
  10. package/node_modules/aws-sdk/apis/iotdeviceadvisor-2020-09-18.min.json +17 -3
  11. package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.min.json +0 -17
  12. package/node_modules/aws-sdk/apis/license-manager-linux-subscriptions-2018-05-10.examples.json +5 -0
  13. package/node_modules/aws-sdk/apis/license-manager-linux-subscriptions-2018-05-10.min.json +203 -0
  14. package/node_modules/aws-sdk/apis/license-manager-linux-subscriptions-2018-05-10.paginators.json +16 -0
  15. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  16. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +212 -169
  17. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +14 -5
  18. package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +52 -33
  19. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  20. package/node_modules/aws-sdk/clients/all.js +2 -1
  21. package/node_modules/aws-sdk/clients/computeoptimizer.d.ts +350 -4
  22. package/node_modules/aws-sdk/clients/connect.d.ts +70 -5
  23. package/node_modules/aws-sdk/clients/iotdeviceadvisor.d.ts +28 -24
  24. package/node_modules/aws-sdk/clients/kinesisvideowebrtcstorage.d.ts +0 -19
  25. package/node_modules/aws-sdk/clients/licensemanagerlinuxsubscriptions.d.ts +269 -0
  26. package/node_modules/aws-sdk/clients/licensemanagerlinuxsubscriptions.js +18 -0
  27. package/node_modules/aws-sdk/clients/macie2.d.ts +1 -1
  28. package/node_modules/aws-sdk/clients/rds.d.ts +86 -8
  29. package/node_modules/aws-sdk/clients/sagemaker.d.ts +17 -1
  30. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +8 -8
  31. package/node_modules/aws-sdk/clients/ssm.d.ts +3 -3
  32. package/node_modules/aws-sdk/clients/support.d.ts +35 -35
  33. package/node_modules/aws-sdk/clients/transfer.d.ts +16 -7
  34. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  35. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +49 -12
  36. package/node_modules/aws-sdk/dist/aws-sdk.js +292 -178
  37. package/node_modules/aws-sdk/dist/aws-sdk.min.js +76 -76
  38. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  39. package/node_modules/aws-sdk/lib/core.js +1 -1
  40. package/node_modules/aws-sdk/package.json +1 -1
  41. package/package.json +4 -4
@@ -5531,6 +5531,73 @@
5531
5531
  }
5532
5532
  }
5533
5533
  },
5534
+ "UpdateParticipantRoleConfig": {
5535
+ "http": {
5536
+ "method": "PUT",
5537
+ "requestUri": "/contact/participant-role-config/{InstanceId}/{ContactId}"
5538
+ },
5539
+ "input": {
5540
+ "type": "structure",
5541
+ "required": [
5542
+ "InstanceId",
5543
+ "ContactId",
5544
+ "ChannelConfiguration"
5545
+ ],
5546
+ "members": {
5547
+ "InstanceId": {
5548
+ "location": "uri",
5549
+ "locationName": "InstanceId"
5550
+ },
5551
+ "ContactId": {
5552
+ "location": "uri",
5553
+ "locationName": "ContactId"
5554
+ },
5555
+ "ChannelConfiguration": {
5556
+ "type": "structure",
5557
+ "members": {
5558
+ "Chat": {
5559
+ "type": "structure",
5560
+ "required": [
5561
+ "ParticipantTimerConfigList"
5562
+ ],
5563
+ "members": {
5564
+ "ParticipantTimerConfigList": {
5565
+ "type": "list",
5566
+ "member": {
5567
+ "type": "structure",
5568
+ "required": [
5569
+ "ParticipantRole",
5570
+ "TimerType",
5571
+ "TimerValue"
5572
+ ],
5573
+ "members": {
5574
+ "ParticipantRole": {},
5575
+ "TimerType": {},
5576
+ "TimerValue": {
5577
+ "type": "structure",
5578
+ "members": {
5579
+ "ParticipantTimerAction": {},
5580
+ "ParticipantTimerDurationInMinutes": {
5581
+ "type": "integer"
5582
+ }
5583
+ },
5584
+ "union": true
5585
+ }
5586
+ }
5587
+ }
5588
+ }
5589
+ }
5590
+ }
5591
+ },
5592
+ "union": true
5593
+ }
5594
+ }
5595
+ },
5596
+ "output": {
5597
+ "type": "structure",
5598
+ "members": {}
5599
+ }
5600
+ },
5534
5601
  "UpdatePhoneNumber": {
5535
5602
  "http": {
5536
5603
  "method": "PUT",
@@ -6048,19 +6115,19 @@
6048
6115
  "type": "structure",
6049
6116
  "members": {
6050
6117
  "LevelOne": {
6051
- "shape": "Sjr"
6118
+ "shape": "Sk2"
6052
6119
  },
6053
6120
  "LevelTwo": {
6054
- "shape": "Sjr"
6121
+ "shape": "Sk2"
6055
6122
  },
6056
6123
  "LevelThree": {
6057
- "shape": "Sjr"
6124
+ "shape": "Sk2"
6058
6125
  },
6059
6126
  "LevelFour": {
6060
- "shape": "Sjr"
6127
+ "shape": "Sk2"
6061
6128
  },
6062
6129
  "LevelFive": {
6063
- "shape": "Sjr"
6130
+ "shape": "Sk2"
6064
6131
  }
6065
6132
  }
6066
6133
  },
@@ -6940,7 +7007,7 @@
6940
7007
  "shape": "Sh2"
6941
7008
  }
6942
7009
  },
6943
- "Sjr": {
7010
+ "Sk2": {
6944
7011
  "type": "structure",
6945
7012
  "required": [
6946
7013
  "Name"
@@ -19,6 +19,9 @@
19
19
  },
20
20
  "input": {
21
21
  "type": "structure",
22
+ "required": [
23
+ "suiteDefinitionConfiguration"
24
+ ],
22
25
  "members": {
23
26
  "suiteDefinitionConfiguration": {
24
27
  "shape": "S2"
@@ -398,7 +401,8 @@
398
401
  "input": {
399
402
  "type": "structure",
400
403
  "required": [
401
- "suiteDefinitionId"
404
+ "suiteDefinitionId",
405
+ "suiteRunConfiguration"
402
406
  ],
403
407
  "members": {
404
408
  "suiteDefinitionId": {
@@ -421,7 +425,8 @@
421
425
  "suiteRunArn": {},
422
426
  "createdAt": {
423
427
  "type": "timestamp"
424
- }
428
+ },
429
+ "endpoint": {}
425
430
  }
426
431
  }
427
432
  },
@@ -513,7 +518,8 @@
513
518
  "input": {
514
519
  "type": "structure",
515
520
  "required": [
516
- "suiteDefinitionId"
521
+ "suiteDefinitionId",
522
+ "suiteDefinitionConfiguration"
517
523
  ],
518
524
  "members": {
519
525
  "suiteDefinitionId": {
@@ -545,6 +551,11 @@
545
551
  "shapes": {
546
552
  "S2": {
547
553
  "type": "structure",
554
+ "required": [
555
+ "suiteDefinitionName",
556
+ "rootGroup",
557
+ "devicePermissionRoleArn"
558
+ ],
548
559
  "members": {
549
560
  "suiteDefinitionName": {},
550
561
  "devices": {
@@ -581,6 +592,9 @@
581
592
  },
582
593
  "Sr": {
583
594
  "type": "structure",
595
+ "required": [
596
+ "primaryDevice"
597
+ ],
584
598
  "members": {
585
599
  "primaryDevice": {
586
600
  "shape": "S5"
@@ -26,23 +26,6 @@
26
26
  "channelArn": {}
27
27
  }
28
28
  }
29
- },
30
- "JoinStorageSessionAsViewer": {
31
- "http": {
32
- "requestUri": "/joinStorageSessionAsViewer",
33
- "responseCode": 200
34
- },
35
- "input": {
36
- "type": "structure",
37
- "required": [
38
- "channelArn",
39
- "clientId"
40
- ],
41
- "members": {
42
- "channelArn": {},
43
- "clientId": {}
44
- }
45
- }
46
29
  }
47
30
  },
48
31
  "shapes": {}
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,203 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2018-05-10",
5
+ "endpointPrefix": "license-manager-linux-subscriptions",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "AWS License Manager Linux Subscriptions",
9
+ "serviceId": "License Manager Linux Subscriptions",
10
+ "signatureVersion": "v4",
11
+ "signingName": "license-manager-linux-subscriptions",
12
+ "uid": "license-manager-linux-subscriptions-2018-05-10"
13
+ },
14
+ "operations": {
15
+ "GetServiceSettings": {
16
+ "http": {
17
+ "requestUri": "/subscription/GetServiceSettings",
18
+ "responseCode": 200
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "members": {}
23
+ },
24
+ "output": {
25
+ "type": "structure",
26
+ "members": {
27
+ "HomeRegions": {
28
+ "shape": "S3"
29
+ },
30
+ "LinuxSubscriptionsDiscovery": {},
31
+ "LinuxSubscriptionsDiscoverySettings": {
32
+ "shape": "S6"
33
+ },
34
+ "Status": {},
35
+ "StatusMessage": {
36
+ "shape": "S9"
37
+ }
38
+ }
39
+ },
40
+ "idempotent": true
41
+ },
42
+ "ListLinuxSubscriptionInstances": {
43
+ "http": {
44
+ "requestUri": "/subscription/ListLinuxSubscriptionInstances",
45
+ "responseCode": 200
46
+ },
47
+ "input": {
48
+ "type": "structure",
49
+ "members": {
50
+ "Filters": {
51
+ "shape": "Sc"
52
+ },
53
+ "MaxResults": {
54
+ "type": "integer"
55
+ },
56
+ "NextToken": {}
57
+ }
58
+ },
59
+ "output": {
60
+ "type": "structure",
61
+ "members": {
62
+ "Instances": {
63
+ "type": "list",
64
+ "member": {
65
+ "type": "structure",
66
+ "members": {
67
+ "AccountID": {},
68
+ "AmiId": {},
69
+ "InstanceID": {},
70
+ "InstanceType": {},
71
+ "LastUpdatedTime": {},
72
+ "ProductCode": {
73
+ "type": "list",
74
+ "member": {}
75
+ },
76
+ "Region": {},
77
+ "Status": {},
78
+ "SubscriptionName": {},
79
+ "UsageOperation": {}
80
+ }
81
+ }
82
+ },
83
+ "NextToken": {}
84
+ }
85
+ },
86
+ "idempotent": true
87
+ },
88
+ "ListLinuxSubscriptions": {
89
+ "http": {
90
+ "requestUri": "/subscription/ListLinuxSubscriptions",
91
+ "responseCode": 200
92
+ },
93
+ "input": {
94
+ "type": "structure",
95
+ "members": {
96
+ "Filters": {
97
+ "shape": "Sc"
98
+ },
99
+ "MaxResults": {
100
+ "type": "integer"
101
+ },
102
+ "NextToken": {}
103
+ }
104
+ },
105
+ "output": {
106
+ "type": "structure",
107
+ "members": {
108
+ "NextToken": {},
109
+ "Subscriptions": {
110
+ "type": "list",
111
+ "member": {
112
+ "type": "structure",
113
+ "members": {
114
+ "InstanceCount": {
115
+ "type": "long"
116
+ },
117
+ "Name": {},
118
+ "Type": {}
119
+ }
120
+ }
121
+ }
122
+ }
123
+ },
124
+ "idempotent": true
125
+ },
126
+ "UpdateServiceSettings": {
127
+ "http": {
128
+ "requestUri": "/subscription/UpdateServiceSettings",
129
+ "responseCode": 200
130
+ },
131
+ "input": {
132
+ "type": "structure",
133
+ "required": [
134
+ "LinuxSubscriptionsDiscovery",
135
+ "LinuxSubscriptionsDiscoverySettings"
136
+ ],
137
+ "members": {
138
+ "AllowUpdate": {
139
+ "type": "boolean"
140
+ },
141
+ "LinuxSubscriptionsDiscovery": {},
142
+ "LinuxSubscriptionsDiscoverySettings": {
143
+ "shape": "S6"
144
+ }
145
+ }
146
+ },
147
+ "output": {
148
+ "type": "structure",
149
+ "members": {
150
+ "HomeRegions": {
151
+ "shape": "S3"
152
+ },
153
+ "LinuxSubscriptionsDiscovery": {},
154
+ "LinuxSubscriptionsDiscoverySettings": {
155
+ "shape": "S6"
156
+ },
157
+ "Status": {},
158
+ "StatusMessage": {
159
+ "shape": "S9"
160
+ }
161
+ }
162
+ },
163
+ "idempotent": true
164
+ }
165
+ },
166
+ "shapes": {
167
+ "S3": {
168
+ "type": "list",
169
+ "member": {}
170
+ },
171
+ "S6": {
172
+ "type": "structure",
173
+ "required": [
174
+ "OrganizationIntegration",
175
+ "SourceRegions"
176
+ ],
177
+ "members": {
178
+ "OrganizationIntegration": {},
179
+ "SourceRegions": {
180
+ "shape": "S3"
181
+ }
182
+ }
183
+ },
184
+ "S9": {
185
+ "type": "map",
186
+ "key": {},
187
+ "value": {}
188
+ },
189
+ "Sc": {
190
+ "type": "list",
191
+ "member": {
192
+ "type": "structure",
193
+ "members": {
194
+ "Name": {},
195
+ "Operator": {},
196
+ "Values": {
197
+ "shape": "S3"
198
+ }
199
+ }
200
+ }
201
+ }
202
+ }
203
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "pagination": {
3
+ "ListLinuxSubscriptionInstances": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults",
7
+ "result_key": "Instances"
8
+ },
9
+ "ListLinuxSubscriptions": {
10
+ "input_token": "NextToken",
11
+ "output_token": "NextToken",
12
+ "limit_key": "MaxResults",
13
+ "result_key": "Subscriptions"
14
+ }
15
+ }
16
+ }
@@ -1263,5 +1263,9 @@
1263
1263
  "kinesisvideowebrtcstorage": {
1264
1264
  "prefix": "kinesis-video-webrtc-storage",
1265
1265
  "name": "KinesisVideoWebRTCStorage"
1266
+ },
1267
+ "licensemanagerlinuxsubscriptions": {
1268
+ "prefix": "license-manager-linux-subscriptions",
1269
+ "name": "LicenseManagerLinuxSubscriptions"
1266
1270
  }
1267
1271
  }