Skip to content

Commit f9c4a37

Browse files
Release v1.44.220 (2023-03-13) (#4756)
Release v1.44.220 (2023-03-13) === ### Service Client Updates * `service/appintegrations`: Updates service API and documentation * `service/lakeformation`: Updates service documentation * `service/s3control`: Updates service API and documentation * Added support for cross-account Multi-Region Access Points. Added support for S3 Replication for S3 on Outposts. * `service/tnb`: Updates service API and documentation * `service/wisdom`: Updates service API and documentation
1 parent eab5e64 commit f9c4a37

File tree

26 files changed

+4799
-867
lines changed

26 files changed

+4799
-867
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.44.220 (2023-03-13)
2+
===
3+
4+
### Service Client Updates
5+
* `service/appintegrations`: Updates service API and documentation
6+
* `service/lakeformation`: Updates service documentation
7+
* `service/s3control`: Updates service API and documentation
8+
* Added support for cross-account Multi-Region Access Points. Added support for S3 Replication for S3 on Outposts.
9+
* `service/tnb`: Updates service API and documentation
10+
* `service/wisdom`: Updates service API and documentation
11+
112
Release v1.44.219 (2023-03-10)
213
===
314

aws/endpoints/defaults.go

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.44.219"
8+
const SDKVersion = "1.44.220"

models/apis/appintegrations/2020-07-29/api-2.json

+69-15
Original file line numberDiff line numberDiff line change
@@ -278,18 +278,25 @@
278278
},
279279
"CreateDataIntegrationRequest":{
280280
"type":"structure",
281-
"required":["Name"],
281+
"required":[
282+
"Name",
283+
"KmsKey",
284+
"SourceURI",
285+
"ScheduleConfig"
286+
],
282287
"members":{
283288
"Name":{"shape":"Name"},
284289
"Description":{"shape":"Description"},
285290
"KmsKey":{"shape":"NonBlankString"},
286-
"SourceURI":{"shape":"NonBlankString"},
291+
"SourceURI":{"shape":"SourceURI"},
287292
"ScheduleConfig":{"shape":"ScheduleConfiguration"},
288293
"Tags":{"shape":"TagMap"},
289294
"ClientToken":{
290295
"shape":"IdempotencyToken",
291296
"idempotencyToken":true
292-
}
297+
},
298+
"FileConfiguration":{"shape":"FileConfiguration"},
299+
"ObjectConfiguration":{"shape":"ObjectConfiguration"}
293300
}
294301
},
295302
"CreateDataIntegrationResponse":{
@@ -300,10 +307,12 @@
300307
"Name":{"shape":"Name"},
301308
"Description":{"shape":"Description"},
302309
"KmsKey":{"shape":"NonBlankString"},
303-
"SourceURI":{"shape":"NonBlankString"},
310+
"SourceURI":{"shape":"SourceURI"},
304311
"ScheduleConfiguration":{"shape":"ScheduleConfiguration"},
305312
"Tags":{"shape":"TagMap"},
306-
"ClientToken":{"shape":"IdempotencyToken"}
313+
"ClientToken":{"shape":"IdempotencyToken"},
314+
"FileConfiguration":{"shape":"FileConfiguration"},
315+
"ObjectConfiguration":{"shape":"ObjectConfiguration"}
307316
}
308317
},
309318
"CreateEventIntegrationRequest":{
@@ -350,7 +359,7 @@
350359
"members":{
351360
"Arn":{"shape":"Arn"},
352361
"Name":{"shape":"Name"},
353-
"SourceURI":{"shape":"NonBlankString"}
362+
"SourceURI":{"shape":"SourceURI"}
354363
}
355364
},
356365
"DataIntegrationsList":{
@@ -458,6 +467,37 @@
458467
"max":50,
459468
"min":1
460469
},
470+
"Fields":{
471+
"type":"string",
472+
"max":255,
473+
"min":1,
474+
"pattern":"^[a-zA-Z0-9\\/\\._\\-]+$"
475+
},
476+
"FieldsList":{
477+
"type":"list",
478+
"member":{"shape":"Fields"},
479+
"max":2048,
480+
"min":1
481+
},
482+
"FieldsMap":{
483+
"type":"map",
484+
"key":{"shape":"NonBlankString"},
485+
"value":{"shape":"FieldsList"}
486+
},
487+
"FileConfiguration":{
488+
"type":"structure",
489+
"required":["Folders"],
490+
"members":{
491+
"Folders":{"shape":"FolderList"},
492+
"Filters":{"shape":"FieldsMap"}
493+
}
494+
},
495+
"FolderList":{
496+
"type":"list",
497+
"member":{"shape":"NonBlankLongString"},
498+
"max":10,
499+
"min":1
500+
},
461501
"GetDataIntegrationRequest":{
462502
"type":"structure",
463503
"required":["Identifier"],
@@ -477,9 +517,11 @@
477517
"Name":{"shape":"Name"},
478518
"Description":{"shape":"Description"},
479519
"KmsKey":{"shape":"NonBlankString"},
480-
"SourceURI":{"shape":"NonBlankString"},
520+
"SourceURI":{"shape":"SourceURI"},
481521
"ScheduleConfiguration":{"shape":"ScheduleConfiguration"},
482-
"Tags":{"shape":"TagMap"}
522+
"Tags":{"shape":"TagMap"},
523+
"FileConfiguration":{"shape":"FileConfiguration"},
524+
"ObjectConfiguration":{"shape":"ObjectConfiguration"}
483525
}
484526
},
485527
"GetEventIntegrationRequest":{
@@ -668,6 +710,12 @@
668710
"min":1,
669711
"pattern":".*"
670712
},
713+
"NonBlankLongString":{
714+
"type":"string",
715+
"max":200,
716+
"min":1,
717+
"pattern":".*\\S.*"
718+
},
671719
"NonBlankString":{
672720
"type":"string",
673721
"max":255,
@@ -680,6 +728,11 @@
680728
"min":1,
681729
"pattern":"^[a-zA-Z0-9\\/\\._\\-]+$"
682730
},
731+
"ObjectConfiguration":{
732+
"type":"map",
733+
"key":{"shape":"NonBlankString"},
734+
"value":{"shape":"FieldsMap"}
735+
},
683736
"ResourceNotFoundException":{
684737
"type":"structure",
685738
"members":{
@@ -696,18 +749,13 @@
696749
"error":{"httpStatusCode":429},
697750
"exception":true
698751
},
699-
"Schedule":{
700-
"type":"string",
701-
"max":255,
702-
"min":1,
703-
"pattern":"^[a-zA-Z0-9\\/\\._\\-]+$"
704-
},
705752
"ScheduleConfiguration":{
706753
"type":"structure",
754+
"required":["ScheduleExpression"],
707755
"members":{
708756
"FirstExecutionFrom":{"shape":"NonBlankString"},
709757
"Object":{"shape":"Object"},
710-
"ScheduleExpression":{"shape":"Schedule"}
758+
"ScheduleExpression":{"shape":"NonBlankString"}
711759
}
712760
},
713761
"Source":{
@@ -716,6 +764,12 @@
716764
"min":1,
717765
"pattern":"^aws\\.partner\\/.*$"
718766
},
767+
"SourceURI":{
768+
"type":"string",
769+
"max":1000,
770+
"min":1,
771+
"pattern":"^(\\w+\\:\\/\\/[\\w.-]+[\\w/!@#+=.-]+$)|(\\w+\\:\\/\\/[\\w.-]+[\\w/!@#+=.-]+[\\w/!@#+=.-]+[\\w/!@#+=.,-]+$)"
772+
},
719773
"TagKey":{
720774
"type":"string",
721775
"max":128,

models/apis/appintegrations/2020-07-29/docs-2.json

+72-23
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"CreateDataIntegrationResponse$Arn": "<p>The Amazon Resource Name (ARN)</p>",
3131
"CreateEventIntegrationResponse$EventIntegrationArn": "<p>The Amazon Resource Name (ARN) of the event integration. </p>",
3232
"DataIntegrationAssociationSummary$DataIntegrationAssociationArn": "<p>The Amazon Resource Name (ARN) of the DataIntegration association.</p>",
33-
"DataIntegrationAssociationSummary$DataIntegrationArn": "<p>The Amazon Resource Name (ARN)of the DataIntegration.</p>",
33+
"DataIntegrationAssociationSummary$DataIntegrationArn": "<p>The Amazon Resource Name (ARN) of the DataIntegration.</p>",
3434
"DataIntegrationSummary$Arn": "<p>The Amazon Resource Name (ARN) of the DataIntegration.</p>",
3535
"EventIntegration$EventIntegrationArn": "<p>The Amazon Resource Name (ARN) of the event integration.</p>",
3636
"EventIntegrationAssociation$EventIntegrationAssociationArn": "<p>The Amazon Resource Name (ARN) for the event integration association.</p>",
@@ -50,7 +50,7 @@
5050
"ClientId": {
5151
"base": null,
5252
"refs": {
53-
"DataIntegrationAssociationSummary$ClientId": "<p>The identifier for teh client that is associated with the DataIntegration association.</p>",
53+
"DataIntegrationAssociationSummary$ClientId": "<p>The identifier for the client that is associated with the DataIntegration association.</p>",
5454
"EventIntegrationAssociation$ClientId": "<p>The identifier for the client that is associated with the event integration.</p>"
5555
}
5656
},
@@ -182,6 +182,39 @@
182182
"ListEventIntegrationsResponse$EventIntegrations": "<p>The event integrations.</p>"
183183
}
184184
},
185+
"Fields": {
186+
"base": null,
187+
"refs": {
188+
"FieldsList$member": null
189+
}
190+
},
191+
"FieldsList": {
192+
"base": null,
193+
"refs": {
194+
"FieldsMap$value": null
195+
}
196+
},
197+
"FieldsMap": {
198+
"base": null,
199+
"refs": {
200+
"FileConfiguration$Filters": "<p>Restrictions for what files should be pulled from the source.</p>",
201+
"ObjectConfiguration$value": null
202+
}
203+
},
204+
"FileConfiguration": {
205+
"base": "<p>The configuration for what files should be pulled from the source.</p>",
206+
"refs": {
207+
"CreateDataIntegrationRequest$FileConfiguration": "<p>The configuration for what files should be pulled from the source.</p>",
208+
"CreateDataIntegrationResponse$FileConfiguration": "<p>The configuration for what files should be pulled from the source.</p>",
209+
"GetDataIntegrationResponse$FileConfiguration": "<p>The configuration for what files should be pulled from the source.</p>"
210+
}
211+
},
212+
"FolderList": {
213+
"base": null,
214+
"refs": {
215+
"FileConfiguration$Folders": "<p>Identifiers for the source folders to pull all files from recursively.</p>"
216+
}
217+
},
185218
"GetDataIntegrationRequest": {
186219
"base": null,
187220
"refs": {
@@ -205,9 +238,9 @@
205238
"IdempotencyToken": {
206239
"base": null,
207240
"refs": {
208-
"CreateDataIntegrationRequest$ClientToken": "<p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
209-
"CreateDataIntegrationResponse$ClientToken": "<p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
210-
"CreateEventIntegrationRequest$ClientToken": "<p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>"
241+
"CreateDataIntegrationRequest$ClientToken": "<p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see <a href=\"https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/\">Making retries safe with idempotent APIs</a>.</p>",
242+
"CreateDataIntegrationResponse$ClientToken": "<p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see <a href=\"https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/\">Making retries safe with idempotent APIs</a>.</p>",
243+
"CreateEventIntegrationRequest$ClientToken": "<p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see <a href=\"https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/\">Making retries safe with idempotent APIs</a>.</p>"
211244
}
212245
},
213246
"Identifier": {
@@ -331,19 +364,24 @@
331364
"ListEventIntegrationsResponse$NextToken": "<p>If there are additional results, this is the token for the next set of results.</p>"
332365
}
333366
},
367+
"NonBlankLongString": {
368+
"base": null,
369+
"refs": {
370+
"FolderList$member": null
371+
}
372+
},
334373
"NonBlankString": {
335374
"base": null,
336375
"refs": {
337376
"ClientAssociationMetadata$key": null,
338377
"ClientAssociationMetadata$value": null,
339378
"CreateDataIntegrationRequest$KmsKey": "<p>The KMS key for the DataIntegration.</p>",
340-
"CreateDataIntegrationRequest$SourceURI": "<p>The URI of the data source.</p>",
341379
"CreateDataIntegrationResponse$KmsKey": "<p>The KMS key for the DataIntegration.</p>",
342-
"CreateDataIntegrationResponse$SourceURI": "<p>The URI of the data source.</p>",
343-
"DataIntegrationSummary$SourceURI": "<p>The URI of the data source.</p>",
380+
"FieldsMap$key": null,
344381
"GetDataIntegrationResponse$KmsKey": "<p>The KMS key for the DataIntegration.</p>",
345-
"GetDataIntegrationResponse$SourceURI": "<p>The URI of the data source.</p>",
346-
"ScheduleConfiguration$FirstExecutionFrom": "<p>The start date for objects to import in the first flow run.</p>"
382+
"ObjectConfiguration$key": null,
383+
"ScheduleConfiguration$FirstExecutionFrom": "<p>The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.</p>",
384+
"ScheduleConfiguration$ScheduleExpression": "<p>How often the data should be pulled from data source.</p>"
347385
}
348386
},
349387
"Object": {
@@ -352,6 +390,14 @@
352390
"ScheduleConfiguration$Object": "<p>The name of the object to pull from the data source.</p>"
353391
}
354392
},
393+
"ObjectConfiguration": {
394+
"base": "<p>The configuration for what data should be pulled from the source.</p>",
395+
"refs": {
396+
"CreateDataIntegrationRequest$ObjectConfiguration": "<p>The configuration for what data should be pulled from the source.</p>",
397+
"CreateDataIntegrationResponse$ObjectConfiguration": "<p>The configuration for what data should be pulled from the source.</p>",
398+
"GetDataIntegrationResponse$ObjectConfiguration": "<p>The configuration for what data should be pulled from the source.</p>"
399+
}
400+
},
355401
"ResourceNotFoundException": {
356402
"base": "<p>The specified resource was not found.</p>",
357403
"refs": {
@@ -362,12 +408,6 @@
362408
"refs": {
363409
}
364410
},
365-
"Schedule": {
366-
"base": null,
367-
"refs": {
368-
"ScheduleConfiguration$ScheduleExpression": "<p>How often the data should be pulled from data source.</p>"
369-
}
370-
},
371411
"ScheduleConfiguration": {
372412
"base": "<p>The name of the data and how often it should be pulled from the source.</p>",
373413
"refs": {
@@ -382,6 +422,15 @@
382422
"EventFilter$Source": "<p>The source of the events.</p>"
383423
}
384424
},
425+
"SourceURI": {
426+
"base": null,
427+
"refs": {
428+
"CreateDataIntegrationRequest$SourceURI": "<p>The URI of the data source.</p>",
429+
"CreateDataIntegrationResponse$SourceURI": "<p>The URI of the data source.</p>",
430+
"DataIntegrationSummary$SourceURI": "<p>The URI of the data source.</p>",
431+
"GetDataIntegrationResponse$SourceURI": "<p>The URI of the data source.</p>"
432+
}
433+
},
385434
"TagKey": {
386435
"base": null,
387436
"refs": {
@@ -398,14 +447,14 @@
398447
"TagMap": {
399448
"base": null,
400449
"refs": {
401-
"CreateDataIntegrationRequest$Tags": "<p>One or more tags.</p>",
402-
"CreateDataIntegrationResponse$Tags": "<p>One or more tags.</p>",
403-
"CreateEventIntegrationRequest$Tags": "<p>One or more tags.</p>",
404-
"EventIntegration$Tags": "<p>The tags.</p>",
405-
"GetDataIntegrationResponse$Tags": "<p>One or more tags.</p>",
406-
"GetEventIntegrationResponse$Tags": "<p>One or more tags.</p>",
450+
"CreateDataIntegrationRequest$Tags": "<p>The tags used to organize, track, or control access for this resource. For example, { \"tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>",
451+
"CreateDataIntegrationResponse$Tags": "<p>The tags used to organize, track, or control access for this resource. For example, { \"tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>",
452+
"CreateEventIntegrationRequest$Tags": "<p>The tags used to organize, track, or control access for this resource. For example, { \"tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>",
453+
"EventIntegration$Tags": "<p>The tags used to organize, track, or control access for this resource. For example, { \"tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>",
454+
"GetDataIntegrationResponse$Tags": "<p>The tags used to organize, track, or control access for this resource. For example, { \"tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>",
455+
"GetEventIntegrationResponse$Tags": "<p>The tags used to organize, track, or control access for this resource. For example, { \"tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>",
407456
"ListTagsForResourceResponse$tags": "<p>Information about the tags.</p>",
408-
"TagResourceRequest$tags": "<p>One or more tags. </p>"
457+
"TagResourceRequest$tags": "<p>The tags used to organize, track, or control access for this resource. For example, { \"tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }.</p>"
409458
}
410459
},
411460
"TagResourceRequest": {

0 commit comments

Comments
 (0)