aws-sdk 2.1664.0 → 2.1666.0

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 (51) hide show
  1. package/README.md +1 -1
  2. package/apis/appstream-2016-12-01.min.json +7 -1
  3. package/apis/autoscaling-2011-01-01.min.json +33 -33
  4. package/apis/bedrock-2023-04-20.min.json +234 -50
  5. package/apis/bedrock-2023-04-20.paginators.json +6 -0
  6. package/apis/codepipeline-2015-07-09.min.json +442 -94
  7. package/apis/codepipeline-2015-07-09.paginators.json +6 -0
  8. package/apis/controlcatalog-2018-05-10.min.json +134 -40
  9. package/apis/controlcatalog-2018-05-10.paginators.json +6 -0
  10. package/apis/controlcatalog-2018-05-10.waiters2.json +5 -0
  11. package/apis/elasticloadbalancing-2012-06-01.min.json +7 -1
  12. package/apis/eventbridge-2015-10-07.min.json +4 -1
  13. package/apis/iam-2010-05-08.min.json +7 -1
  14. package/apis/logs-2014-03-28.min.json +7 -1
  15. package/apis/memorydb-2021-01-01.min.json +7 -1
  16. package/apis/metadata.json +4 -0
  17. package/apis/models.lex.v2-2020-08-07.min.json +374 -346
  18. package/apis/rds-2014-10-31.min.json +9 -0
  19. package/apis/rolesanywhere-2018-05-10.min.json +16 -1
  20. package/apis/sagemaker-2017-07-24.min.json +834 -821
  21. package/apis/ssm-quicksetup-2018-05-10.examples.json +5 -0
  22. package/apis/ssm-quicksetup-2018-05-10.min.json +454 -0
  23. package/apis/ssm-quicksetup-2018-05-10.paginators.json +10 -0
  24. package/apis/support-2013-04-15.min.json +4 -1
  25. package/apis/tnb-2008-10-21.min.json +90 -23
  26. package/clients/all.d.ts +1 -0
  27. package/clients/all.js +2 -1
  28. package/clients/appstream.d.ts +8 -8
  29. package/clients/autoscaling.d.ts +4 -3
  30. package/clients/bedrock.d.ts +226 -12
  31. package/clients/codepipeline.d.ts +481 -1
  32. package/clients/controlcatalog.d.ts +116 -24
  33. package/clients/controlcatalog.js +1 -0
  34. package/clients/elasticache.d.ts +196 -196
  35. package/clients/lexmodelsv2.d.ts +45 -5
  36. package/clients/memorydb.d.ts +9 -9
  37. package/clients/rds.d.ts +18 -6
  38. package/clients/rolesanywhere.d.ts +12 -0
  39. package/clients/sagemaker.d.ts +16 -0
  40. package/clients/ssmquicksetup.d.ts +495 -0
  41. package/clients/ssmquicksetup.js +18 -0
  42. package/clients/support.d.ts +1 -1
  43. package/clients/tnb.d.ts +95 -18
  44. package/clients/workspaces.d.ts +7 -7
  45. package/dist/aws-sdk-core-react-native.js +2 -2
  46. package/dist/aws-sdk-react-native.js +113 -69
  47. package/dist/aws-sdk.js +518 -133
  48. package/dist/aws-sdk.min.js +93 -92
  49. package/lib/config_service_placeholders.d.ts +2 -0
  50. package/lib/core.js +1 -1
  51. package/package.json +1 -1
@@ -23,6 +23,12 @@
23
23
  "limit_key": "maxResults",
24
24
  "result_key": "pipelines"
25
25
  },
26
+ "ListRuleExecutions": {
27
+ "input_token": "nextToken",
28
+ "output_token": "nextToken",
29
+ "limit_key": "maxResults",
30
+ "result_key": "ruleExecutionDetails"
31
+ },
26
32
  "ListTagsForResource": {
27
33
  "input_token": "nextToken",
28
34
  "output_token": "nextToken",
@@ -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
+ }
@@ -4,11 +4,17 @@
4
4
  "apiVersion": "2012-06-01",
5
5
  "endpointPrefix": "elasticloadbalancing",
6
6
  "protocol": "query",
7
+ "protocols": [
8
+ "query"
9
+ ],
7
10
  "serviceFullName": "Elastic Load Balancing",
8
11
  "serviceId": "Elastic Load Balancing",
9
12
  "signatureVersion": "v4",
10
13
  "uid": "elasticloadbalancing-2012-06-01",
11
- "xmlNamespace": "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/"
14
+ "xmlNamespace": "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
15
+ "auth": [
16
+ "aws.auth#sigv4"
17
+ ]
12
18
  },
13
19
  "operations": {
14
20
  "AddTags": {
@@ -12,7 +12,10 @@
12
12
  "serviceId": "EventBridge",
13
13
  "signatureVersion": "v4",
14
14
  "targetPrefix": "AWSEvents",
15
- "uid": "eventbridge-2015-10-07"
15
+ "uid": "eventbridge-2015-10-07",
16
+ "auth": [
17
+ "aws.auth#sigv4"
18
+ ]
16
19
  },
17
20
  "operations": {
18
21
  "ActivateEventSource": {
@@ -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": {
@@ -5,11 +5,17 @@
5
5
  "endpointPrefix": "logs",
6
6
  "jsonVersion": "1.1",
7
7
  "protocol": "json",
8
+ "protocols": [
9
+ "json"
10
+ ],
8
11
  "serviceFullName": "Amazon CloudWatch Logs",
9
12
  "serviceId": "CloudWatch Logs",
10
13
  "signatureVersion": "v4",
11
14
  "targetPrefix": "Logs_20140328",
12
- "uid": "logs-2014-03-28"
15
+ "uid": "logs-2014-03-28",
16
+ "auth": [
17
+ "aws.auth#sigv4"
18
+ ]
13
19
  },
14
20
  "operations": {
15
21
  "AssociateKmsKey": {
@@ -5,13 +5,19 @@
5
5
  "endpointPrefix": "memory-db",
6
6
  "jsonVersion": "1.1",
7
7
  "protocol": "json",
8
+ "protocols": [
9
+ "json"
10
+ ],
8
11
  "serviceAbbreviation": "Amazon MemoryDB",
9
12
  "serviceFullName": "Amazon MemoryDB",
10
13
  "serviceId": "MemoryDB",
11
14
  "signatureVersion": "v4",
12
15
  "signingName": "memorydb",
13
16
  "targetPrefix": "AmazonMemoryDB",
14
- "uid": "memorydb-2021-01-01"
17
+ "uid": "memorydb-2021-01-01",
18
+ "auth": [
19
+ "aws.auth#sigv4"
20
+ ]
15
21
  },
16
22
  "operations": {
17
23
  "BatchUpdateCluster": {
@@ -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
  }