cdk-lambda-subminute 2.0.457 → 2.0.459

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 (35) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +234 -50
  5. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +6 -0
  6. package/node_modules/aws-sdk/apis/controlcatalog-2018-05-10.min.json +134 -40
  7. package/node_modules/aws-sdk/apis/controlcatalog-2018-05-10.paginators.json +6 -0
  8. package/node_modules/aws-sdk/apis/controlcatalog-2018-05-10.waiters2.json +5 -0
  9. package/node_modules/aws-sdk/apis/iam-2010-05-08.min.json +7 -1
  10. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  11. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +9 -0
  12. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +834 -821
  13. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.examples.json +5 -0
  14. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.min.json +454 -0
  15. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.paginators.json +10 -0
  16. package/node_modules/aws-sdk/apis/support-2013-04-15.min.json +4 -1
  17. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  18. package/node_modules/aws-sdk/clients/all.js +2 -1
  19. package/node_modules/aws-sdk/clients/bedrock.d.ts +226 -12
  20. package/node_modules/aws-sdk/clients/controlcatalog.d.ts +116 -24
  21. package/node_modules/aws-sdk/clients/controlcatalog.js +1 -0
  22. package/node_modules/aws-sdk/clients/memorydb.d.ts +2 -2
  23. package/node_modules/aws-sdk/clients/rds.d.ts +18 -6
  24. package/node_modules/aws-sdk/clients/sagemaker.d.ts +16 -0
  25. package/node_modules/aws-sdk/clients/ssmquicksetup.d.ts +495 -0
  26. package/node_modules/aws-sdk/clients/ssmquicksetup.js +18 -0
  27. package/node_modules/aws-sdk/clients/support.d.ts +1 -1
  28. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  29. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +102 -58
  30. package/node_modules/aws-sdk/dist/aws-sdk.js +23 -4
  31. package/node_modules/aws-sdk/dist/aws-sdk.min.js +45 -45
  32. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  33. package/node_modules/aws-sdk/lib/core.js +1 -1
  34. package/node_modules/aws-sdk/package.json +1 -1
  35. package/package.json +2 -2
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,454 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2018-05-10",
5
+ "endpointPrefix": "ssm-quicksetup",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "protocols": [
9
+ "rest-json"
10
+ ],
11
+ "serviceFullName": "AWS Systems Manager QuickSetup",
12
+ "serviceId": "SSM QuickSetup",
13
+ "signatureVersion": "v4",
14
+ "signingName": "ssm-quicksetup",
15
+ "uid": "ssm-quicksetup-2018-05-10",
16
+ "auth": [
17
+ "aws.auth#sigv4"
18
+ ]
19
+ },
20
+ "operations": {
21
+ "CreateConfigurationManager": {
22
+ "http": {
23
+ "requestUri": "/configurationManager",
24
+ "responseCode": 200
25
+ },
26
+ "input": {
27
+ "type": "structure",
28
+ "required": [
29
+ "ConfigurationDefinitions"
30
+ ],
31
+ "members": {
32
+ "ConfigurationDefinitions": {
33
+ "type": "list",
34
+ "member": {
35
+ "type": "structure",
36
+ "required": [
37
+ "Parameters",
38
+ "Type"
39
+ ],
40
+ "members": {
41
+ "LocalDeploymentAdministrationRoleArn": {},
42
+ "LocalDeploymentExecutionRoleName": {},
43
+ "Parameters": {
44
+ "shape": "S6"
45
+ },
46
+ "Type": {},
47
+ "TypeVersion": {}
48
+ }
49
+ }
50
+ },
51
+ "Description": {},
52
+ "Name": {},
53
+ "Tags": {
54
+ "shape": "Sd"
55
+ }
56
+ }
57
+ },
58
+ "output": {
59
+ "type": "structure",
60
+ "required": [
61
+ "ManagerArn"
62
+ ],
63
+ "members": {
64
+ "ManagerArn": {}
65
+ }
66
+ }
67
+ },
68
+ "DeleteConfigurationManager": {
69
+ "http": {
70
+ "method": "DELETE",
71
+ "requestUri": "/configurationManager/{ManagerArn}",
72
+ "responseCode": 200
73
+ },
74
+ "input": {
75
+ "type": "structure",
76
+ "required": [
77
+ "ManagerArn"
78
+ ],
79
+ "members": {
80
+ "ManagerArn": {
81
+ "location": "uri",
82
+ "locationName": "ManagerArn"
83
+ }
84
+ }
85
+ },
86
+ "idempotent": true
87
+ },
88
+ "GetConfigurationManager": {
89
+ "http": {
90
+ "method": "GET",
91
+ "requestUri": "/configurationManager/{ManagerArn}",
92
+ "responseCode": 200
93
+ },
94
+ "input": {
95
+ "type": "structure",
96
+ "required": [
97
+ "ManagerArn"
98
+ ],
99
+ "members": {
100
+ "ManagerArn": {
101
+ "location": "uri",
102
+ "locationName": "ManagerArn"
103
+ }
104
+ }
105
+ },
106
+ "output": {
107
+ "type": "structure",
108
+ "required": [
109
+ "ManagerArn"
110
+ ],
111
+ "members": {
112
+ "ConfigurationDefinitions": {
113
+ "type": "list",
114
+ "member": {
115
+ "type": "structure",
116
+ "required": [
117
+ "Parameters",
118
+ "Type"
119
+ ],
120
+ "members": {
121
+ "Id": {},
122
+ "LocalDeploymentAdministrationRoleArn": {},
123
+ "LocalDeploymentExecutionRoleName": {},
124
+ "Parameters": {
125
+ "shape": "S6"
126
+ },
127
+ "Type": {},
128
+ "TypeVersion": {}
129
+ }
130
+ }
131
+ },
132
+ "CreatedAt": {
133
+ "shape": "Ss"
134
+ },
135
+ "Description": {},
136
+ "LastModifiedAt": {
137
+ "shape": "Ss"
138
+ },
139
+ "ManagerArn": {},
140
+ "Name": {},
141
+ "StatusSummaries": {
142
+ "shape": "St"
143
+ },
144
+ "Tags": {
145
+ "shape": "Sd"
146
+ }
147
+ }
148
+ }
149
+ },
150
+ "GetServiceSettings": {
151
+ "http": {
152
+ "method": "GET",
153
+ "requestUri": "/serviceSettings",
154
+ "responseCode": 200
155
+ },
156
+ "output": {
157
+ "type": "structure",
158
+ "members": {
159
+ "ServiceSettings": {
160
+ "type": "structure",
161
+ "members": {
162
+ "ExplorerEnablingRoleArn": {}
163
+ }
164
+ }
165
+ }
166
+ }
167
+ },
168
+ "ListConfigurationManagers": {
169
+ "http": {
170
+ "requestUri": "/listConfigurationManagers",
171
+ "responseCode": 200
172
+ },
173
+ "input": {
174
+ "type": "structure",
175
+ "members": {
176
+ "Filters": {
177
+ "type": "list",
178
+ "member": {
179
+ "type": "structure",
180
+ "required": [
181
+ "Key",
182
+ "Values"
183
+ ],
184
+ "members": {
185
+ "Key": {},
186
+ "Values": {
187
+ "type": "list",
188
+ "member": {}
189
+ }
190
+ }
191
+ }
192
+ },
193
+ "MaxItems": {
194
+ "type": "integer"
195
+ },
196
+ "StartingToken": {}
197
+ }
198
+ },
199
+ "output": {
200
+ "type": "structure",
201
+ "members": {
202
+ "ConfigurationManagersList": {
203
+ "type": "list",
204
+ "member": {
205
+ "type": "structure",
206
+ "required": [
207
+ "ManagerArn"
208
+ ],
209
+ "members": {
210
+ "ConfigurationDefinitionSummaries": {
211
+ "type": "list",
212
+ "member": {
213
+ "type": "structure",
214
+ "members": {
215
+ "FirstClassParameters": {
216
+ "shape": "S6"
217
+ },
218
+ "Id": {},
219
+ "Type": {},
220
+ "TypeVersion": {}
221
+ }
222
+ }
223
+ },
224
+ "Description": {},
225
+ "ManagerArn": {},
226
+ "Name": {},
227
+ "StatusSummaries": {
228
+ "shape": "St"
229
+ }
230
+ }
231
+ }
232
+ },
233
+ "NextToken": {}
234
+ }
235
+ }
236
+ },
237
+ "ListQuickSetupTypes": {
238
+ "http": {
239
+ "method": "GET",
240
+ "requestUri": "/listQuickSetupTypes",
241
+ "responseCode": 200
242
+ },
243
+ "output": {
244
+ "type": "structure",
245
+ "members": {
246
+ "QuickSetupTypeList": {
247
+ "type": "list",
248
+ "member": {
249
+ "type": "structure",
250
+ "members": {
251
+ "LatestVersion": {},
252
+ "Type": {}
253
+ }
254
+ }
255
+ }
256
+ }
257
+ }
258
+ },
259
+ "ListTagsForResource": {
260
+ "http": {
261
+ "method": "GET",
262
+ "requestUri": "/tags/{ResourceArn}",
263
+ "responseCode": 200
264
+ },
265
+ "input": {
266
+ "type": "structure",
267
+ "required": [
268
+ "ResourceArn"
269
+ ],
270
+ "members": {
271
+ "ResourceArn": {
272
+ "location": "uri",
273
+ "locationName": "ResourceArn"
274
+ }
275
+ }
276
+ },
277
+ "output": {
278
+ "type": "structure",
279
+ "members": {
280
+ "Tags": {
281
+ "type": "list",
282
+ "member": {
283
+ "type": "structure",
284
+ "members": {
285
+ "Key": {},
286
+ "Value": {}
287
+ },
288
+ "sensitive": true
289
+ },
290
+ "sensitive": true
291
+ }
292
+ }
293
+ }
294
+ },
295
+ "TagResource": {
296
+ "http": {
297
+ "method": "PUT",
298
+ "requestUri": "/tags/{ResourceArn}",
299
+ "responseCode": 200
300
+ },
301
+ "input": {
302
+ "type": "structure",
303
+ "required": [
304
+ "ResourceArn",
305
+ "Tags"
306
+ ],
307
+ "members": {
308
+ "ResourceArn": {
309
+ "location": "uri",
310
+ "locationName": "ResourceArn"
311
+ },
312
+ "Tags": {
313
+ "shape": "Sd"
314
+ }
315
+ }
316
+ },
317
+ "idempotent": true
318
+ },
319
+ "UntagResource": {
320
+ "http": {
321
+ "method": "DELETE",
322
+ "requestUri": "/tags/{ResourceArn}",
323
+ "responseCode": 200
324
+ },
325
+ "input": {
326
+ "type": "structure",
327
+ "required": [
328
+ "ResourceArn",
329
+ "TagKeys"
330
+ ],
331
+ "members": {
332
+ "ResourceArn": {
333
+ "location": "uri",
334
+ "locationName": "ResourceArn"
335
+ },
336
+ "TagKeys": {
337
+ "location": "querystring",
338
+ "locationName": "tagKeys",
339
+ "type": "list",
340
+ "member": {}
341
+ }
342
+ }
343
+ },
344
+ "idempotent": true
345
+ },
346
+ "UpdateConfigurationDefinition": {
347
+ "http": {
348
+ "method": "PUT",
349
+ "requestUri": "/configurationDefinition/{ManagerArn}/{Id}",
350
+ "responseCode": 200
351
+ },
352
+ "input": {
353
+ "type": "structure",
354
+ "required": [
355
+ "Id",
356
+ "ManagerArn"
357
+ ],
358
+ "members": {
359
+ "Id": {
360
+ "location": "uri",
361
+ "locationName": "Id"
362
+ },
363
+ "LocalDeploymentAdministrationRoleArn": {},
364
+ "LocalDeploymentExecutionRoleName": {},
365
+ "ManagerArn": {
366
+ "location": "uri",
367
+ "locationName": "ManagerArn"
368
+ },
369
+ "Parameters": {
370
+ "shape": "S6"
371
+ },
372
+ "TypeVersion": {}
373
+ }
374
+ },
375
+ "idempotent": true
376
+ },
377
+ "UpdateConfigurationManager": {
378
+ "http": {
379
+ "method": "PUT",
380
+ "requestUri": "/configurationManager/{ManagerArn}",
381
+ "responseCode": 200
382
+ },
383
+ "input": {
384
+ "type": "structure",
385
+ "required": [
386
+ "ManagerArn"
387
+ ],
388
+ "members": {
389
+ "Description": {},
390
+ "ManagerArn": {
391
+ "location": "uri",
392
+ "locationName": "ManagerArn"
393
+ },
394
+ "Name": {}
395
+ }
396
+ },
397
+ "idempotent": true
398
+ },
399
+ "UpdateServiceSettings": {
400
+ "http": {
401
+ "method": "PUT",
402
+ "requestUri": "/serviceSettings",
403
+ "responseCode": 200
404
+ },
405
+ "input": {
406
+ "type": "structure",
407
+ "members": {
408
+ "ExplorerEnablingRoleArn": {}
409
+ }
410
+ },
411
+ "idempotent": true
412
+ }
413
+ },
414
+ "shapes": {
415
+ "S6": {
416
+ "type": "map",
417
+ "key": {},
418
+ "value": {}
419
+ },
420
+ "Sd": {
421
+ "type": "map",
422
+ "key": {},
423
+ "value": {},
424
+ "sensitive": true
425
+ },
426
+ "Ss": {
427
+ "type": "timestamp",
428
+ "timestampFormat": "iso8601"
429
+ },
430
+ "St": {
431
+ "type": "list",
432
+ "member": {
433
+ "type": "structure",
434
+ "required": [
435
+ "LastUpdatedAt",
436
+ "StatusType"
437
+ ],
438
+ "members": {
439
+ "LastUpdatedAt": {
440
+ "shape": "Ss"
441
+ },
442
+ "Status": {},
443
+ "StatusDetails": {
444
+ "type": "map",
445
+ "key": {},
446
+ "value": {}
447
+ },
448
+ "StatusMessage": {},
449
+ "StatusType": {}
450
+ }
451
+ }
452
+ }
453
+ }
454
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "pagination": {
3
+ "ListConfigurationManagers": {
4
+ "input_token": "StartingToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxItems",
7
+ "result_key": "ConfigurationManagersList"
8
+ }
9
+ }
10
+ }
@@ -12,7 +12,10 @@
12
12
  "serviceId": "Support",
13
13
  "signatureVersion": "v4",
14
14
  "targetPrefix": "AWSSupport_20130415",
15
- "uid": "support-2013-04-15"
15
+ "uid": "support-2013-04-15",
16
+ "auth": [
17
+ "aws.auth#sigv4"
18
+ ]
16
19
  },
17
20
  "operations": {
18
21
  "AddAttachmentsToSet": {
@@ -382,3 +382,4 @@ export import ApplicationSignals = require('./applicationsignals');
382
382
  export import PcaConnectorScep = require('./pcaconnectorscep');
383
383
  export import AppTest = require('./apptest');
384
384
  export import QApps = require('./qapps');
385
+ export import SSMQuickSetup = require('./ssmquicksetup');
@@ -383,5 +383,6 @@ module.exports = {
383
383
  ApplicationSignals: require('./applicationsignals'),
384
384
  PcaConnectorScep: require('./pcaconnectorscep'),
385
385
  AppTest: require('./apptest'),
386
- QApps: require('./qapps')
386
+ QApps: require('./qapps'),
387
+ SSMQuickSetup: require('./ssmquicksetup')
387
388
  };