cdk-lambda-subminute 2.0.458 → 2.0.460

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 (42) 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/kinesis-2013-12-02.min.json +7 -1
  11. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  12. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +7 -1
  13. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +9 -0
  14. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +422 -142
  15. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.paginators.json +6 -0
  16. package/node_modules/aws-sdk/apis/route53-2013-04-01.min.json +7 -1
  17. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +834 -821
  18. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.examples.json +5 -0
  19. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.min.json +454 -0
  20. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.paginators.json +10 -0
  21. package/node_modules/aws-sdk/apis/support-2013-04-15.min.json +4 -1
  22. package/node_modules/aws-sdk/apis/waf-regional-2016-11-28.min.json +7 -1
  23. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  24. package/node_modules/aws-sdk/clients/all.js +2 -1
  25. package/node_modules/aws-sdk/clients/bedrock.d.ts +226 -12
  26. package/node_modules/aws-sdk/clients/controlcatalog.d.ts +116 -24
  27. package/node_modules/aws-sdk/clients/controlcatalog.js +1 -0
  28. package/node_modules/aws-sdk/clients/memorydb.d.ts +2 -2
  29. package/node_modules/aws-sdk/clients/rds.d.ts +18 -6
  30. package/node_modules/aws-sdk/clients/resiliencehub.d.ts +305 -14
  31. package/node_modules/aws-sdk/clients/sagemaker.d.ts +16 -0
  32. package/node_modules/aws-sdk/clients/ssmquicksetup.d.ts +495 -0
  33. package/node_modules/aws-sdk/clients/ssmquicksetup.js +18 -0
  34. package/node_modules/aws-sdk/clients/support.d.ts +1 -1
  35. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  36. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +108 -64
  37. package/node_modules/aws-sdk/dist/aws-sdk.js +44 -7
  38. package/node_modules/aws-sdk/dist/aws-sdk.min.js +48 -48
  39. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  40. package/node_modules/aws-sdk/lib/core.js +1 -1
  41. package/node_modules/aws-sdk/package.json +1 -1
  42. package/package.json +4 -4
@@ -2,9 +2,14 @@
2
2
  "version": "2.0",
3
3
  "metadata": {
4
4
  "apiVersion": "2018-05-10",
5
+ "auth": [
6
+ "aws.auth#sigv4"
7
+ ],
5
8
  "endpointPrefix": "controlcatalog",
6
- "jsonVersion": "1.1",
7
9
  "protocol": "rest-json",
10
+ "protocols": [
11
+ "rest-json"
12
+ ],
8
13
  "serviceFullName": "AWS Control Catalog",
9
14
  "serviceId": "ControlCatalog",
10
15
  "signatureVersion": "v4",
@@ -12,6 +17,50 @@
12
17
  "uid": "controlcatalog-2018-05-10"
13
18
  },
14
19
  "operations": {
20
+ "GetControl": {
21
+ "http": {
22
+ "requestUri": "/get-control",
23
+ "responseCode": 200
24
+ },
25
+ "input": {
26
+ "type": "structure",
27
+ "required": [
28
+ "ControlArn"
29
+ ],
30
+ "members": {
31
+ "ControlArn": {}
32
+ }
33
+ },
34
+ "output": {
35
+ "type": "structure",
36
+ "required": [
37
+ "Arn",
38
+ "Name",
39
+ "Description",
40
+ "Behavior",
41
+ "RegionConfiguration"
42
+ ],
43
+ "members": {
44
+ "Arn": {},
45
+ "Name": {},
46
+ "Description": {},
47
+ "Behavior": {},
48
+ "RegionConfiguration": {
49
+ "type": "structure",
50
+ "required": [
51
+ "Scope"
52
+ ],
53
+ "members": {
54
+ "Scope": {},
55
+ "DeployableRegions": {
56
+ "type": "list",
57
+ "member": {}
58
+ }
59
+ }
60
+ }
61
+ }
62
+ }
63
+ },
15
64
  "ListCommonControls": {
16
65
  "http": {
17
66
  "requestUri": "/common-controls",
@@ -20,6 +69,15 @@
20
69
  "input": {
21
70
  "type": "structure",
22
71
  "members": {
72
+ "MaxResults": {
73
+ "location": "querystring",
74
+ "locationName": "maxResults",
75
+ "type": "integer"
76
+ },
77
+ "NextToken": {
78
+ "location": "querystring",
79
+ "locationName": "nextToken"
80
+ },
23
81
  "CommonControlFilter": {
24
82
  "type": "structure",
25
83
  "members": {
@@ -33,15 +91,6 @@
33
91
  }
34
92
  }
35
93
  }
36
- },
37
- "MaxResults": {
38
- "location": "querystring",
39
- "locationName": "maxResults",
40
- "type": "integer"
41
- },
42
- "NextToken": {
43
- "location": "querystring",
44
- "locationName": "nextToken"
45
94
  }
46
95
  }
47
96
  },
@@ -57,32 +106,32 @@
57
106
  "type": "structure",
58
107
  "required": [
59
108
  "Arn",
60
- "CreateTime",
109
+ "Name",
61
110
  "Description",
62
111
  "Domain",
63
- "LastUpdateTime",
64
- "Name",
65
- "Objective"
112
+ "Objective",
113
+ "CreateTime",
114
+ "LastUpdateTime"
66
115
  ],
67
116
  "members": {
68
117
  "Arn": {},
69
- "CreateTime": {
70
- "type": "timestamp"
71
- },
118
+ "Name": {},
72
119
  "Description": {},
73
120
  "Domain": {
74
- "shape": "Se"
121
+ "shape": "Sl"
75
122
  },
76
- "LastUpdateTime": {
77
- "type": "timestamp"
78
- },
79
- "Name": {},
80
123
  "Objective": {
81
124
  "type": "structure",
82
125
  "members": {
83
126
  "Arn": {},
84
127
  "Name": {}
85
128
  }
129
+ },
130
+ "CreateTime": {
131
+ "type": "timestamp"
132
+ },
133
+ "LastUpdateTime": {
134
+ "type": "timestamp"
86
135
  }
87
136
  }
88
137
  }
@@ -91,6 +140,51 @@
91
140
  }
92
141
  }
93
142
  },
143
+ "ListControls": {
144
+ "http": {
145
+ "requestUri": "/list-controls",
146
+ "responseCode": 200
147
+ },
148
+ "input": {
149
+ "type": "structure",
150
+ "members": {
151
+ "NextToken": {
152
+ "location": "querystring",
153
+ "locationName": "nextToken"
154
+ },
155
+ "MaxResults": {
156
+ "location": "querystring",
157
+ "locationName": "maxResults",
158
+ "type": "integer"
159
+ }
160
+ }
161
+ },
162
+ "output": {
163
+ "type": "structure",
164
+ "required": [
165
+ "Controls"
166
+ ],
167
+ "members": {
168
+ "Controls": {
169
+ "type": "list",
170
+ "member": {
171
+ "type": "structure",
172
+ "required": [
173
+ "Arn",
174
+ "Name",
175
+ "Description"
176
+ ],
177
+ "members": {
178
+ "Arn": {},
179
+ "Name": {},
180
+ "Description": {}
181
+ }
182
+ }
183
+ },
184
+ "NextToken": {}
185
+ }
186
+ }
187
+ },
94
188
  "ListDomains": {
95
189
  "http": {
96
190
  "requestUri": "/domains",
@@ -122,21 +216,21 @@
122
216
  "type": "structure",
123
217
  "required": [
124
218
  "Arn",
125
- "CreateTime",
219
+ "Name",
126
220
  "Description",
127
- "LastUpdateTime",
128
- "Name"
221
+ "CreateTime",
222
+ "LastUpdateTime"
129
223
  ],
130
224
  "members": {
131
225
  "Arn": {},
226
+ "Name": {},
227
+ "Description": {},
132
228
  "CreateTime": {
133
229
  "type": "timestamp"
134
230
  },
135
- "Description": {},
136
231
  "LastUpdateTime": {
137
232
  "type": "timestamp"
138
- },
139
- "Name": {}
233
+ }
140
234
  }
141
235
  }
142
236
  },
@@ -183,41 +277,41 @@
183
277
  "Objectives"
184
278
  ],
185
279
  "members": {
186
- "NextToken": {},
187
280
  "Objectives": {
188
281
  "type": "list",
189
282
  "member": {
190
283
  "type": "structure",
191
284
  "required": [
192
285
  "Arn",
193
- "CreateTime",
286
+ "Name",
194
287
  "Description",
195
288
  "Domain",
196
- "LastUpdateTime",
197
- "Name"
289
+ "CreateTime",
290
+ "LastUpdateTime"
198
291
  ],
199
292
  "members": {
200
293
  "Arn": {},
201
- "CreateTime": {
202
- "type": "timestamp"
203
- },
294
+ "Name": {},
204
295
  "Description": {},
205
296
  "Domain": {
206
- "shape": "Se"
297
+ "shape": "Sl"
207
298
  },
208
- "LastUpdateTime": {
299
+ "CreateTime": {
209
300
  "type": "timestamp"
210
301
  },
211
- "Name": {}
302
+ "LastUpdateTime": {
303
+ "type": "timestamp"
304
+ }
212
305
  }
213
306
  }
214
- }
307
+ },
308
+ "NextToken": {}
215
309
  }
216
310
  }
217
311
  }
218
312
  },
219
313
  "shapes": {
220
- "Se": {
314
+ "Sl": {
221
315
  "type": "structure",
222
316
  "members": {
223
317
  "Arn": {},
@@ -6,6 +6,12 @@
6
6
  "limit_key": "MaxResults",
7
7
  "result_key": "CommonControls"
8
8
  },
9
+ "ListControls": {
10
+ "input_token": "NextToken",
11
+ "output_token": "NextToken",
12
+ "limit_key": "MaxResults",
13
+ "result_key": "Controls"
14
+ },
9
15
  "ListDomains": {
10
16
  "input_token": "NextToken",
11
17
  "output_token": "NextToken",
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ }
5
+ }
@@ -5,12 +5,18 @@
5
5
  "endpointPrefix": "iam",
6
6
  "globalEndpoint": "iam.amazonaws.com",
7
7
  "protocol": "query",
8
+ "protocols": [
9
+ "query"
10
+ ],
8
11
  "serviceAbbreviation": "IAM",
9
12
  "serviceFullName": "AWS Identity and Access Management",
10
13
  "serviceId": "IAM",
11
14
  "signatureVersion": "v4",
12
15
  "uid": "iam-2010-05-08",
13
- "xmlNamespace": "https://iam.amazonaws.com/doc/2010-05-08/"
16
+ "xmlNamespace": "https://iam.amazonaws.com/doc/2010-05-08/",
17
+ "auth": [
18
+ "aws.auth#sigv4"
19
+ ]
14
20
  },
15
21
  "operations": {
16
22
  "AddClientIDToOpenIDConnectProvider": {
@@ -8,12 +8,18 @@
8
8
  "protocolSettings": {
9
9
  "h2": "eventstream"
10
10
  },
11
+ "protocols": [
12
+ "json"
13
+ ],
11
14
  "serviceAbbreviation": "Kinesis",
12
15
  "serviceFullName": "Amazon Kinesis",
13
16
  "serviceId": "Kinesis",
14
17
  "signatureVersion": "v4",
15
18
  "targetPrefix": "Kinesis_20131202",
16
- "uid": "kinesis-2013-12-02"
19
+ "uid": "kinesis-2013-12-02",
20
+ "auth": [
21
+ "aws.auth#sigv4"
22
+ ]
17
23
  },
18
24
  "operations": {
19
25
  "AddTagsToStream": {
@@ -1432,5 +1432,9 @@
1432
1432
  },
1433
1433
  "qapps": {
1434
1434
  "name": "QApps"
1435
+ },
1436
+ "ssmquicksetup": {
1437
+ "prefix": "ssm-quicksetup",
1438
+ "name": "SSMQuickSetup"
1435
1439
  }
1436
1440
  }
@@ -4,12 +4,18 @@
4
4
  "apiVersion": "2010-08-01",
5
5
  "endpointPrefix": "monitoring",
6
6
  "protocol": "query",
7
+ "protocols": [
8
+ "query"
9
+ ],
7
10
  "serviceAbbreviation": "CloudWatch",
8
11
  "serviceFullName": "Amazon CloudWatch",
9
12
  "serviceId": "CloudWatch",
10
13
  "signatureVersion": "v4",
11
14
  "uid": "monitoring-2010-08-01",
12
- "xmlNamespace": "http://monitoring.amazonaws.com/doc/2010-08-01/"
15
+ "xmlNamespace": "http://monitoring.amazonaws.com/doc/2010-08-01/",
16
+ "auth": [
17
+ "aws.auth#sigv4"
18
+ ]
13
19
  },
14
20
  "operations": {
15
21
  "DeleteAlarms": {
@@ -987,6 +987,9 @@
987
987
  "MaxACU": {
988
988
  "type": "double"
989
989
  },
990
+ "MinACU": {
991
+ "type": "double"
992
+ },
990
993
  "PubliclyAccessible": {
991
994
  "type": "boolean"
992
995
  }
@@ -4024,6 +4027,9 @@
4024
4027
  "DBShardGroupIdentifier": {},
4025
4028
  "MaxACU": {
4026
4029
  "type": "double"
4030
+ },
4031
+ "MinACU": {
4032
+ "type": "double"
4027
4033
  }
4028
4034
  }
4029
4035
  },
@@ -6859,6 +6865,9 @@
6859
6865
  "MaxACU": {
6860
6866
  "type": "double"
6861
6867
  },
6868
+ "MinACU": {
6869
+ "type": "double"
6870
+ },
6862
6871
  "ComputeRedundancy": {
6863
6872
  "type": "integer"
6864
6873
  },