aws-sdk 2.995.0 → 2.999.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 (69) hide show
  1. package/CHANGELOG.md +28 -1
  2. package/README.md +1 -1
  3. package/apis/account-2021-02-01.examples.json +5 -0
  4. package/apis/account-2021-02-01.min.json +123 -0
  5. package/apis/account-2021-02-01.paginators.json +4 -0
  6. package/apis/amp-2020-08-01.min.json +442 -11
  7. package/apis/amp-2020-08-01.paginators.json +6 -0
  8. package/apis/amp-2020-08-01.waiters2.json +43 -0
  9. package/apis/appintegrations-2020-07-29.min.json +222 -8
  10. package/apis/apprunner-2020-05-15.min.json +10 -10
  11. package/apis/cloudcontrol-2021-09-30.examples.json +5 -0
  12. package/apis/cloudcontrol-2021-09-30.min.json +271 -0
  13. package/apis/cloudcontrol-2021-09-30.paginators.json +14 -0
  14. package/apis/cloudcontrol-2021-09-30.waiters2.json +31 -0
  15. package/apis/connect-2017-08-08.min.json +25 -11
  16. package/apis/dataexchange-2017-07-25.min.json +277 -38
  17. package/apis/dataexchange-2017-07-25.paginators.json +6 -0
  18. package/apis/lambda-2015-03-31.min.json +79 -42
  19. package/apis/macie2-2020-01-01.min.json +79 -67
  20. package/apis/metadata.json +13 -0
  21. package/apis/network-firewall-2020-11-12.min.json +65 -31
  22. package/apis/pinpoint-2016-12-01.min.json +226 -213
  23. package/apis/sesv2-2019-09-27.min.json +72 -70
  24. package/apis/ssm-2014-11-06.min.json +3 -0
  25. package/apis/synthetics-2017-10-11.min.json +39 -9
  26. package/apis/voice-id-2021-09-27.examples.json +5 -0
  27. package/apis/voice-id-2021-09-27.min.json +903 -0
  28. package/apis/voice-id-2021-09-27.paginators.json +24 -0
  29. package/apis/wisdom-2020-10-19.examples.json +5 -0
  30. package/apis/wisdom-2020-10-19.min.json +1525 -0
  31. package/apis/wisdom-2020-10-19.paginators.json +46 -0
  32. package/apis/workmail-2017-10-01.min.json +139 -27
  33. package/apis/workmail-2017-10-01.paginators.json +5 -0
  34. package/apis/workspaces-2015-04-08.min.json +83 -50
  35. package/clients/account.d.ts +136 -0
  36. package/clients/account.js +18 -0
  37. package/clients/all.d.ts +4 -0
  38. package/clients/all.js +5 -1
  39. package/clients/amp.d.ts +387 -0
  40. package/clients/amp.js +1 -0
  41. package/clients/appintegrations.d.ts +273 -2
  42. package/clients/apprunner.d.ts +55 -54
  43. package/clients/cloudcontrol.d.ts +385 -0
  44. package/clients/cloudcontrol.js +19 -0
  45. package/clients/connect.d.ts +60 -32
  46. package/clients/dataexchange.d.ts +226 -2
  47. package/clients/elbv2.d.ts +7 -7
  48. package/clients/imagebuilder.d.ts +27 -27
  49. package/clients/lambda.d.ts +61 -22
  50. package/clients/macie2.d.ts +29 -12
  51. package/clients/networkfirewall.d.ts +61 -10
  52. package/clients/pinpoint.d.ts +24 -0
  53. package/clients/sesv2.d.ts +128 -108
  54. package/clients/ssm.d.ts +7 -3
  55. package/clients/synthetics.d.ts +40 -0
  56. package/clients/transfer.d.ts +12 -12
  57. package/clients/voiceid.d.ts +1133 -0
  58. package/clients/voiceid.js +18 -0
  59. package/clients/wisdom.d.ts +1499 -0
  60. package/clients/wisdom.js +18 -0
  61. package/clients/workmail.d.ts +173 -0
  62. package/clients/workspaces.d.ts +87 -40
  63. package/dist/aws-sdk-core-react-native.js +2 -2
  64. package/dist/aws-sdk-react-native.js +371 -209
  65. package/dist/aws-sdk.js +123 -56
  66. package/dist/aws-sdk.min.js +70 -70
  67. package/lib/config_service_placeholders.d.ts +8 -0
  68. package/lib/core.js +1 -1
  69. package/package.json +1 -1
@@ -12,6 +12,50 @@
12
12
  "uid": "appintegrations-2020-07-29"
13
13
  },
14
14
  "operations": {
15
+ "CreateDataIntegration": {
16
+ "http": {
17
+ "requestUri": "/dataIntegrations"
18
+ },
19
+ "input": {
20
+ "type": "structure",
21
+ "required": [
22
+ "Name"
23
+ ],
24
+ "members": {
25
+ "Name": {},
26
+ "Description": {},
27
+ "KmsKey": {},
28
+ "SourceURI": {},
29
+ "ScheduleConfig": {
30
+ "shape": "S5"
31
+ },
32
+ "Tags": {
33
+ "shape": "S8"
34
+ },
35
+ "ClientToken": {
36
+ "idempotencyToken": true
37
+ }
38
+ }
39
+ },
40
+ "output": {
41
+ "type": "structure",
42
+ "members": {
43
+ "Arn": {},
44
+ "Id": {},
45
+ "Name": {},
46
+ "Description": {},
47
+ "KmsKey": {},
48
+ "SourceURI": {},
49
+ "ScheduleConfiguration": {
50
+ "shape": "S5"
51
+ },
52
+ "Tags": {
53
+ "shape": "S8"
54
+ },
55
+ "ClientToken": {}
56
+ }
57
+ }
58
+ },
15
59
  "CreateEventIntegration": {
16
60
  "http": {
17
61
  "requestUri": "/eventIntegrations"
@@ -27,7 +71,7 @@
27
71
  "Name": {},
28
72
  "Description": {},
29
73
  "EventFilter": {
30
- "shape": "S4"
74
+ "shape": "Sg"
31
75
  },
32
76
  "EventBridgeBus": {},
33
77
  "ClientToken": {
@@ -45,6 +89,28 @@
45
89
  }
46
90
  }
47
91
  },
92
+ "DeleteDataIntegration": {
93
+ "http": {
94
+ "method": "DELETE",
95
+ "requestUri": "/dataIntegrations/{Identifier}"
96
+ },
97
+ "input": {
98
+ "type": "structure",
99
+ "required": [
100
+ "DataIntegrationIdentifier"
101
+ ],
102
+ "members": {
103
+ "DataIntegrationIdentifier": {
104
+ "location": "uri",
105
+ "locationName": "Identifier"
106
+ }
107
+ }
108
+ },
109
+ "output": {
110
+ "type": "structure",
111
+ "members": {}
112
+ }
113
+ },
48
114
  "DeleteEventIntegration": {
49
115
  "http": {
50
116
  "method": "DELETE",
@@ -67,6 +133,41 @@
67
133
  "members": {}
68
134
  }
69
135
  },
136
+ "GetDataIntegration": {
137
+ "http": {
138
+ "method": "GET",
139
+ "requestUri": "/dataIntegrations/{Identifier}"
140
+ },
141
+ "input": {
142
+ "type": "structure",
143
+ "required": [
144
+ "Identifier"
145
+ ],
146
+ "members": {
147
+ "Identifier": {
148
+ "location": "uri",
149
+ "locationName": "Identifier"
150
+ }
151
+ }
152
+ },
153
+ "output": {
154
+ "type": "structure",
155
+ "members": {
156
+ "Arn": {},
157
+ "Id": {},
158
+ "Name": {},
159
+ "Description": {},
160
+ "KmsKey": {},
161
+ "SourceURI": {},
162
+ "ScheduleConfiguration": {
163
+ "shape": "S5"
164
+ },
165
+ "Tags": {
166
+ "shape": "S8"
167
+ }
168
+ }
169
+ }
170
+ },
70
171
  "GetEventIntegration": {
71
172
  "http": {
72
173
  "method": "GET",
@@ -92,7 +193,7 @@
92
193
  "EventIntegrationArn": {},
93
194
  "EventBridgeBus": {},
94
195
  "EventFilter": {
95
- "shape": "S4"
196
+ "shape": "Sg"
96
197
  },
97
198
  "Tags": {
98
199
  "shape": "S8"
@@ -100,6 +201,87 @@
100
201
  }
101
202
  }
102
203
  },
204
+ "ListDataIntegrationAssociations": {
205
+ "http": {
206
+ "method": "GET",
207
+ "requestUri": "/dataIntegrations/{Identifier}/associations"
208
+ },
209
+ "input": {
210
+ "type": "structure",
211
+ "required": [
212
+ "DataIntegrationIdentifier"
213
+ ],
214
+ "members": {
215
+ "DataIntegrationIdentifier": {
216
+ "location": "uri",
217
+ "locationName": "Identifier"
218
+ },
219
+ "NextToken": {
220
+ "location": "querystring",
221
+ "locationName": "nextToken"
222
+ },
223
+ "MaxResults": {
224
+ "location": "querystring",
225
+ "locationName": "maxResults",
226
+ "type": "integer"
227
+ }
228
+ }
229
+ },
230
+ "output": {
231
+ "type": "structure",
232
+ "members": {
233
+ "DataIntegrationAssociations": {
234
+ "type": "list",
235
+ "member": {
236
+ "type": "structure",
237
+ "members": {
238
+ "DataIntegrationAssociationArn": {},
239
+ "DataIntegrationArn": {},
240
+ "ClientId": {}
241
+ }
242
+ }
243
+ },
244
+ "NextToken": {}
245
+ }
246
+ }
247
+ },
248
+ "ListDataIntegrations": {
249
+ "http": {
250
+ "method": "GET",
251
+ "requestUri": "/dataIntegrations"
252
+ },
253
+ "input": {
254
+ "type": "structure",
255
+ "members": {
256
+ "NextToken": {
257
+ "location": "querystring",
258
+ "locationName": "nextToken"
259
+ },
260
+ "MaxResults": {
261
+ "location": "querystring",
262
+ "locationName": "maxResults",
263
+ "type": "integer"
264
+ }
265
+ }
266
+ },
267
+ "output": {
268
+ "type": "structure",
269
+ "members": {
270
+ "DataIntegrations": {
271
+ "type": "list",
272
+ "member": {
273
+ "type": "structure",
274
+ "members": {
275
+ "Arn": {},
276
+ "Name": {},
277
+ "SourceURI": {}
278
+ }
279
+ }
280
+ },
281
+ "NextToken": {}
282
+ }
283
+ }
284
+ },
103
285
  "ListEventIntegrationAssociations": {
104
286
  "http": {
105
287
  "method": "GET",
@@ -182,7 +364,7 @@
182
364
  "Name": {},
183
365
  "Description": {},
184
366
  "EventFilter": {
185
- "shape": "S4"
367
+ "shape": "Sg"
186
368
  },
187
369
  "EventBridgeBus": {},
188
370
  "Tags": {
@@ -275,6 +457,30 @@
275
457
  "members": {}
276
458
  }
277
459
  },
460
+ "UpdateDataIntegration": {
461
+ "http": {
462
+ "method": "PATCH",
463
+ "requestUri": "/dataIntegrations/{Identifier}"
464
+ },
465
+ "input": {
466
+ "type": "structure",
467
+ "required": [
468
+ "Identifier"
469
+ ],
470
+ "members": {
471
+ "Identifier": {
472
+ "location": "uri",
473
+ "locationName": "Identifier"
474
+ },
475
+ "Name": {},
476
+ "Description": {}
477
+ }
478
+ },
479
+ "output": {
480
+ "type": "structure",
481
+ "members": {}
482
+ }
483
+ },
278
484
  "UpdateEventIntegration": {
279
485
  "http": {
280
486
  "method": "PATCH",
@@ -300,19 +506,27 @@
300
506
  }
301
507
  },
302
508
  "shapes": {
303
- "S4": {
509
+ "S5": {
304
510
  "type": "structure",
305
- "required": [
306
- "Source"
307
- ],
308
511
  "members": {
309
- "Source": {}
512
+ "FirstExecutionFrom": {},
513
+ "Object": {},
514
+ "ScheduleExpression": {}
310
515
  }
311
516
  },
312
517
  "S8": {
313
518
  "type": "map",
314
519
  "key": {},
315
520
  "value": {}
521
+ },
522
+ "Sg": {
523
+ "type": "structure",
524
+ "required": [
525
+ "Source"
526
+ ],
527
+ "members": {
528
+ "Source": {}
529
+ }
316
530
  }
317
531
  }
318
532
  }
@@ -140,7 +140,7 @@
140
140
  ],
141
141
  "members": {
142
142
  "Service": {
143
- "shape": "S1u"
143
+ "shape": "S1v"
144
144
  },
145
145
  "OperationId": {}
146
146
  }
@@ -205,7 +205,7 @@
205
205
  ],
206
206
  "members": {
207
207
  "Service": {
208
- "shape": "S1u"
208
+ "shape": "S1v"
209
209
  },
210
210
  "OperationId": {}
211
211
  }
@@ -284,7 +284,7 @@
284
284
  ],
285
285
  "members": {
286
286
  "Service": {
287
- "shape": "S1u"
287
+ "shape": "S1v"
288
288
  }
289
289
  }
290
290
  }
@@ -340,7 +340,7 @@
340
340
  "AutoScalingConfigurationSummaryList": {
341
341
  "type": "list",
342
342
  "member": {
343
- "shape": "S1x"
343
+ "shape": "S1y"
344
344
  }
345
345
  },
346
346
  "NextToken": {}
@@ -500,7 +500,7 @@
500
500
  ],
501
501
  "members": {
502
502
  "Service": {
503
- "shape": "S1u"
503
+ "shape": "S1v"
504
504
  },
505
505
  "OperationId": {}
506
506
  }
@@ -523,7 +523,7 @@
523
523
  ],
524
524
  "members": {
525
525
  "Service": {
526
- "shape": "S1u"
526
+ "shape": "S1v"
527
527
  },
528
528
  "OperationId": {}
529
529
  }
@@ -616,7 +616,7 @@
616
616
  ],
617
617
  "members": {
618
618
  "Service": {
619
- "shape": "S1u"
619
+ "shape": "S1v"
620
620
  },
621
621
  "OperationId": {}
622
622
  }
@@ -836,7 +836,7 @@
836
836
  }
837
837
  }
838
838
  },
839
- "S1u": {
839
+ "S1v": {
840
840
  "type": "structure",
841
841
  "required": [
842
842
  "ServiceName",
@@ -878,11 +878,11 @@
878
878
  "shape": "S1n"
879
879
  },
880
880
  "AutoScalingConfigurationSummary": {
881
- "shape": "S1x"
881
+ "shape": "S1y"
882
882
  }
883
883
  }
884
884
  },
885
- "S1x": {
885
+ "S1y": {
886
886
  "type": "structure",
887
887
  "members": {
888
888
  "AutoScalingConfigurationArn": {},
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,271 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2021-09-30",
5
+ "endpointPrefix": "cloudcontrolapi",
6
+ "jsonVersion": "1.0",
7
+ "protocol": "json",
8
+ "serviceAbbreviation": "CloudControlApi",
9
+ "serviceFullName": "AWS Cloud Control API",
10
+ "serviceId": "CloudControl",
11
+ "signatureVersion": "v4",
12
+ "signingName": "cloudcontrolapi",
13
+ "targetPrefix": "CloudApiService",
14
+ "uid": "cloudcontrol-2021-09-30"
15
+ },
16
+ "operations": {
17
+ "CancelResourceRequest": {
18
+ "input": {
19
+ "type": "structure",
20
+ "required": [
21
+ "RequestToken"
22
+ ],
23
+ "members": {
24
+ "RequestToken": {}
25
+ }
26
+ },
27
+ "output": {
28
+ "type": "structure",
29
+ "members": {
30
+ "ProgressEvent": {
31
+ "shape": "S4"
32
+ }
33
+ }
34
+ },
35
+ "idempotent": true
36
+ },
37
+ "CreateResource": {
38
+ "input": {
39
+ "type": "structure",
40
+ "required": [
41
+ "TypeName",
42
+ "DesiredState"
43
+ ],
44
+ "members": {
45
+ "TypeName": {},
46
+ "TypeVersionId": {},
47
+ "RoleArn": {},
48
+ "ClientToken": {
49
+ "idempotencyToken": true
50
+ },
51
+ "DesiredState": {
52
+ "shape": "Sa"
53
+ }
54
+ }
55
+ },
56
+ "output": {
57
+ "type": "structure",
58
+ "members": {
59
+ "ProgressEvent": {
60
+ "shape": "S4"
61
+ }
62
+ }
63
+ }
64
+ },
65
+ "DeleteResource": {
66
+ "input": {
67
+ "type": "structure",
68
+ "required": [
69
+ "TypeName",
70
+ "Identifier"
71
+ ],
72
+ "members": {
73
+ "TypeName": {},
74
+ "TypeVersionId": {},
75
+ "RoleArn": {},
76
+ "ClientToken": {
77
+ "idempotencyToken": true
78
+ },
79
+ "Identifier": {}
80
+ }
81
+ },
82
+ "output": {
83
+ "type": "structure",
84
+ "members": {
85
+ "ProgressEvent": {
86
+ "shape": "S4"
87
+ }
88
+ }
89
+ }
90
+ },
91
+ "GetResource": {
92
+ "input": {
93
+ "type": "structure",
94
+ "required": [
95
+ "TypeName",
96
+ "Identifier"
97
+ ],
98
+ "members": {
99
+ "TypeName": {},
100
+ "TypeVersionId": {},
101
+ "RoleArn": {},
102
+ "Identifier": {}
103
+ }
104
+ },
105
+ "output": {
106
+ "type": "structure",
107
+ "members": {
108
+ "TypeName": {},
109
+ "ResourceDescription": {
110
+ "shape": "Sm"
111
+ }
112
+ }
113
+ }
114
+ },
115
+ "GetResourceRequestStatus": {
116
+ "input": {
117
+ "type": "structure",
118
+ "required": [
119
+ "RequestToken"
120
+ ],
121
+ "members": {
122
+ "RequestToken": {}
123
+ }
124
+ },
125
+ "output": {
126
+ "type": "structure",
127
+ "members": {
128
+ "ProgressEvent": {
129
+ "shape": "S4"
130
+ }
131
+ }
132
+ }
133
+ },
134
+ "ListResourceRequests": {
135
+ "input": {
136
+ "type": "structure",
137
+ "members": {
138
+ "MaxResults": {
139
+ "type": "integer"
140
+ },
141
+ "NextToken": {},
142
+ "ResourceRequestStatusFilter": {
143
+ "type": "structure",
144
+ "members": {
145
+ "Operations": {
146
+ "type": "list",
147
+ "member": {}
148
+ },
149
+ "OperationStatuses": {
150
+ "type": "list",
151
+ "member": {}
152
+ }
153
+ }
154
+ }
155
+ }
156
+ },
157
+ "output": {
158
+ "type": "structure",
159
+ "members": {
160
+ "ResourceRequestStatusSummaries": {
161
+ "type": "list",
162
+ "member": {
163
+ "shape": "S4"
164
+ }
165
+ },
166
+ "NextToken": {}
167
+ }
168
+ }
169
+ },
170
+ "ListResources": {
171
+ "input": {
172
+ "type": "structure",
173
+ "required": [
174
+ "TypeName"
175
+ ],
176
+ "members": {
177
+ "TypeName": {},
178
+ "TypeVersionId": {},
179
+ "RoleArn": {},
180
+ "NextToken": {},
181
+ "MaxResults": {
182
+ "type": "integer"
183
+ },
184
+ "ResourceModel": {
185
+ "shape": "Sa"
186
+ }
187
+ }
188
+ },
189
+ "output": {
190
+ "type": "structure",
191
+ "members": {
192
+ "TypeName": {},
193
+ "ResourceDescriptions": {
194
+ "type": "list",
195
+ "member": {
196
+ "shape": "Sm"
197
+ }
198
+ },
199
+ "NextToken": {}
200
+ }
201
+ }
202
+ },
203
+ "UpdateResource": {
204
+ "input": {
205
+ "type": "structure",
206
+ "required": [
207
+ "TypeName",
208
+ "Identifier",
209
+ "PatchDocument"
210
+ ],
211
+ "members": {
212
+ "TypeName": {},
213
+ "TypeVersionId": {},
214
+ "RoleArn": {},
215
+ "ClientToken": {
216
+ "idempotencyToken": true
217
+ },
218
+ "Identifier": {},
219
+ "PatchDocument": {
220
+ "type": "string",
221
+ "sensitive": true
222
+ }
223
+ }
224
+ },
225
+ "output": {
226
+ "type": "structure",
227
+ "members": {
228
+ "ProgressEvent": {
229
+ "shape": "S4"
230
+ }
231
+ }
232
+ }
233
+ }
234
+ },
235
+ "shapes": {
236
+ "S4": {
237
+ "type": "structure",
238
+ "members": {
239
+ "TypeName": {},
240
+ "Identifier": {},
241
+ "RequestToken": {},
242
+ "Operation": {},
243
+ "OperationStatus": {},
244
+ "EventTime": {
245
+ "type": "timestamp"
246
+ },
247
+ "ResourceModel": {
248
+ "shape": "Sa"
249
+ },
250
+ "StatusMessage": {},
251
+ "ErrorCode": {},
252
+ "RetryAfter": {
253
+ "type": "timestamp"
254
+ }
255
+ }
256
+ },
257
+ "Sa": {
258
+ "type": "string",
259
+ "sensitive": true
260
+ },
261
+ "Sm": {
262
+ "type": "structure",
263
+ "members": {
264
+ "Identifier": {},
265
+ "Properties": {
266
+ "shape": "Sa"
267
+ }
268
+ }
269
+ }
270
+ }
271
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "pagination": {
3
+ "ListResourceRequests": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "ListResources": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "ResourceRequestSuccess": {
5
+ "description": "Wait until resource operation request is successful",
6
+ "operation": "GetResourceRequestStatus",
7
+ "delay": 5,
8
+ "maxAttempts": 720,
9
+ "acceptors": [
10
+ {
11
+ "state": "success",
12
+ "matcher": "path",
13
+ "argument": "ProgressEvent.OperationStatus",
14
+ "expected": "SUCCESS"
15
+ },
16
+ {
17
+ "state": "failure",
18
+ "matcher": "path",
19
+ "argument": "ProgressEvent.OperationStatus",
20
+ "expected": "FAILED"
21
+ },
22
+ {
23
+ "state": "failure",
24
+ "matcher": "path",
25
+ "argument": "ProgressEvent.OperationStatus",
26
+ "expected": "CANCEL_COMPLETE"
27
+ }
28
+ ]
29
+ }
30
+ }
31
+ }