aws-sdk-core 2.11.589 → 2.11.594

Sign up to get free protection for your applications and to get access to all the features.
@@ -879,6 +879,27 @@
879
879
  },
880
880
  "shapes":{
881
881
  "AnyLengthString":{"type":"string"},
882
+ "AttributeNamesList":{
883
+ "type":"list",
884
+ "member":{"shape":"AttributeNamesListItem"}
885
+ },
886
+ "AttributeNamesListItem":{
887
+ "type":"string",
888
+ "max":63,
889
+ "min":1,
890
+ "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
891
+ },
892
+ "AugmentedManifestsListItem":{
893
+ "type":"structure",
894
+ "required":[
895
+ "S3Uri",
896
+ "AttributeNames"
897
+ ],
898
+ "members":{
899
+ "S3Uri":{"shape":"S3Uri"},
900
+ "AttributeNames":{"shape":"AttributeNamesList"}
901
+ }
902
+ },
882
903
  "BatchDetectDominantLanguageItemResult":{
883
904
  "type":"structure",
884
905
  "members":{
@@ -1527,6 +1548,17 @@
1527
1548
  "max":256,
1528
1549
  "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:document-classifier/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1529
1550
  },
1551
+ "DocumentClassifierAugmentedManifestsList":{
1552
+ "type":"list",
1553
+ "member":{"shape":"AugmentedManifestsListItem"}
1554
+ },
1555
+ "DocumentClassifierDataFormat":{
1556
+ "type":"string",
1557
+ "enum":[
1558
+ "COMPREHEND_CSV",
1559
+ "AUGMENTED_MANIFEST"
1560
+ ]
1561
+ },
1530
1562
  "DocumentClassifierEndpointArn":{
1531
1563
  "type":"string",
1532
1564
  "max":256,
@@ -1542,10 +1574,11 @@
1542
1574
  },
1543
1575
  "DocumentClassifierInputDataConfig":{
1544
1576
  "type":"structure",
1545
- "required":["S3Uri"],
1546
1577
  "members":{
1578
+ "DataFormat":{"shape":"DocumentClassifierDataFormat"},
1547
1579
  "S3Uri":{"shape":"S3Uri"},
1548
- "LabelDelimiter":{"shape":"LabelDelimiter"}
1580
+ "LabelDelimiter":{"shape":"LabelDelimiter"},
1581
+ "AugmentedManifests":{"shape":"DocumentClassifierAugmentedManifestsList"}
1549
1582
  }
1550
1583
  },
1551
1584
  "DocumentClassifierMode":{
@@ -1719,6 +1752,17 @@
1719
1752
  "max":256,
1720
1753
  "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:entity-recognizer/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1721
1754
  },
1755
+ "EntityRecognizerAugmentedManifestsList":{
1756
+ "type":"list",
1757
+ "member":{"shape":"AugmentedManifestsListItem"}
1758
+ },
1759
+ "EntityRecognizerDataFormat":{
1760
+ "type":"string",
1761
+ "enum":[
1762
+ "COMPREHEND_CSV",
1763
+ "AUGMENTED_MANIFEST"
1764
+ ]
1765
+ },
1722
1766
  "EntityRecognizerDocuments":{
1723
1767
  "type":"structure",
1724
1768
  "required":["S3Uri"],
@@ -1756,15 +1800,14 @@
1756
1800
  },
1757
1801
  "EntityRecognizerInputDataConfig":{
1758
1802
  "type":"structure",
1759
- "required":[
1760
- "EntityTypes",
1761
- "Documents"
1762
- ],
1803
+ "required":["EntityTypes"],
1763
1804
  "members":{
1805
+ "DataFormat":{"shape":"EntityRecognizerDataFormat"},
1764
1806
  "EntityTypes":{"shape":"EntityTypesList"},
1765
1807
  "Documents":{"shape":"EntityRecognizerDocuments"},
1766
1808
  "Annotations":{"shape":"EntityRecognizerAnnotations"},
1767
- "EntityList":{"shape":"EntityRecognizerEntityList"}
1809
+ "EntityList":{"shape":"EntityRecognizerEntityList"},
1810
+ "AugmentedManifests":{"shape":"EntityRecognizerAugmentedManifestsList"}
1768
1811
  }
1769
1812
  },
1770
1813
  "EntityRecognizerMetadata":{
@@ -1828,7 +1871,7 @@
1828
1871
  "EntityTypeName":{
1829
1872
  "type":"string",
1830
1873
  "max":64,
1831
- "pattern":"[_A-Z0-9]+"
1874
+ "pattern":"^(?:(?!\\\\n+|\\\\t+|\\\\r+|[\\r\\t\\n\\s,]).)+$"
1832
1875
  },
1833
1876
  "EntityTypesEvaluationMetrics":{
1834
1877
  "type":"structure",
@@ -1681,8 +1681,7 @@
1681
1681
  "required":[
1682
1682
  "ConformancePackName",
1683
1683
  "ConformancePackArn",
1684
- "ConformancePackId",
1685
- "DeliveryS3Bucket"
1684
+ "ConformancePackId"
1686
1685
  ],
1687
1686
  "members":{
1688
1687
  "ConformancePackName":{"shape":"ConformancePackName"},
@@ -2017,12 +2016,12 @@
2017
2016
  "DeliveryS3Bucket":{
2018
2017
  "type":"string",
2019
2018
  "max":63,
2020
- "min":3
2019
+ "min":0
2021
2020
  },
2022
2021
  "DeliveryS3KeyPrefix":{
2023
2022
  "type":"string",
2024
2023
  "max":1024,
2025
- "min":1
2024
+ "min":0
2026
2025
  },
2027
2026
  "DeliveryStatus":{
2028
2027
  "type":"string",
@@ -3246,7 +3245,6 @@
3246
3245
  "required":[
3247
3246
  "OrganizationConformancePackName",
3248
3247
  "OrganizationConformancePackArn",
3249
- "DeliveryS3Bucket",
3250
3248
  "LastUpdateTime"
3251
3249
  ],
3252
3250
  "members":{
@@ -3496,10 +3494,7 @@
3496
3494
  },
3497
3495
  "PutConformancePackRequest":{
3498
3496
  "type":"structure",
3499
- "required":[
3500
- "ConformancePackName",
3501
- "DeliveryS3Bucket"
3502
- ],
3497
+ "required":["ConformancePackName"],
3503
3498
  "members":{
3504
3499
  "ConformancePackName":{"shape":"ConformancePackName"},
3505
3500
  "TemplateS3Uri":{"shape":"TemplateS3Uri"},
@@ -3555,10 +3550,7 @@
3555
3550
  },
3556
3551
  "PutOrganizationConformancePackRequest":{
3557
3552
  "type":"structure",
3558
- "required":[
3559
- "OrganizationConformancePackName",
3560
- "DeliveryS3Bucket"
3561
- ],
3553
+ "required":["OrganizationConformancePackName"],
3562
3554
  "members":{
3563
3555
  "OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
3564
3556
  "TemplateS3Uri":{"shape":"TemplateS3Uri"},
@@ -20349,6 +20349,14 @@
20349
20349
  "LocalGatewayRouteTableId":{
20350
20350
  "shape":"LocalGatewayRoutetableId",
20351
20351
  "locationName":"localGatewayRouteTableId"
20352
+ },
20353
+ "LocalGatewayRouteTableArn":{
20354
+ "shape":"ResourceArn",
20355
+ "locationName":"localGatewayRouteTableArn"
20356
+ },
20357
+ "OwnerId":{
20358
+ "shape":"String",
20359
+ "locationName":"ownerId"
20352
20360
  }
20353
20361
  }
20354
20362
  },
@@ -20376,6 +20384,10 @@
20376
20384
  "shape":"String",
20377
20385
  "locationName":"localGatewayRouteTableId"
20378
20386
  },
20387
+ "LocalGatewayRouteTableArn":{
20388
+ "shape":"ResourceArn",
20389
+ "locationName":"localGatewayRouteTableArn"
20390
+ },
20379
20391
  "LocalGatewayId":{
20380
20392
  "shape":"LocalGatewayId",
20381
20393
  "locationName":"localGatewayId"
@@ -20384,6 +20396,10 @@
20384
20396
  "shape":"String",
20385
20397
  "locationName":"outpostArn"
20386
20398
  },
20399
+ "OwnerId":{
20400
+ "shape":"String",
20401
+ "locationName":"ownerId"
20402
+ },
20387
20403
  "State":{
20388
20404
  "shape":"String",
20389
20405
  "locationName":"state"
@@ -20427,6 +20443,14 @@
20427
20443
  "shape":"LocalGatewayId",
20428
20444
  "locationName":"localGatewayRouteTableId"
20429
20445
  },
20446
+ "LocalGatewayRouteTableArn":{
20447
+ "shape":"ResourceArn",
20448
+ "locationName":"localGatewayRouteTableArn"
20449
+ },
20450
+ "OwnerId":{
20451
+ "shape":"String",
20452
+ "locationName":"ownerId"
20453
+ },
20430
20454
  "State":{
20431
20455
  "shape":"String",
20432
20456
  "locationName":"state"
@@ -20463,6 +20487,10 @@
20463
20487
  "shape":"String",
20464
20488
  "locationName":"localGatewayRouteTableId"
20465
20489
  },
20490
+ "LocalGatewayRouteTableArn":{
20491
+ "shape":"ResourceArn",
20492
+ "locationName":"localGatewayRouteTableArn"
20493
+ },
20466
20494
  "LocalGatewayId":{
20467
20495
  "shape":"String",
20468
20496
  "locationName":"localGatewayId"
@@ -20471,6 +20499,10 @@
20471
20499
  "shape":"String",
20472
20500
  "locationName":"vpcId"
20473
20501
  },
20502
+ "OwnerId":{
20503
+ "shape":"String",
20504
+ "locationName":"ownerId"
20505
+ },
20474
20506
  "State":{
20475
20507
  "shape":"String",
20476
20508
  "locationName":"state"
@@ -411,6 +411,7 @@
411
411
  "endpoint":{"shape":"String"},
412
412
  "roleArn":{"shape":"String"},
413
413
  "resourcesVpcConfig":{"shape":"VpcConfigResponse"},
414
+ "kubernetesNetworkConfig":{"shape":"KubernetesNetworkConfigResponse"},
414
415
  "logging":{"shape":"Logging"},
415
416
  "identity":{"shape":"Identity"},
416
417
  "status":{"shape":"ClusterStatus"},
@@ -449,6 +450,7 @@
449
450
  "version":{"shape":"String"},
450
451
  "roleArn":{"shape":"String"},
451
452
  "resourcesVpcConfig":{"shape":"VpcConfigRequest"},
453
+ "kubernetesNetworkConfig":{"shape":"KubernetesNetworkConfigRequest"},
452
454
  "logging":{"shape":"Logging"},
453
455
  "clientRequestToken":{
454
456
  "shape":"String",
@@ -822,6 +824,18 @@
822
824
  "type":"list",
823
825
  "member":{"shape":"Issue"}
824
826
  },
827
+ "KubernetesNetworkConfigRequest":{
828
+ "type":"structure",
829
+ "members":{
830
+ "serviceIpv4Cidr":{"shape":"String"}
831
+ }
832
+ },
833
+ "KubernetesNetworkConfigResponse":{
834
+ "type":"structure",
835
+ "members":{
836
+ "serviceIpv4Cidr":{"shape":"String"}
837
+ }
838
+ },
825
839
  "LaunchTemplateSpecification":{
826
840
  "type":"structure",
827
841
  "members":{
@@ -563,6 +563,18 @@
563
563
  "EventSourceArn":{"shape":"String"}
564
564
  }
565
565
  },
566
+ "Database":{
567
+ "type":"string",
568
+ "max":64,
569
+ "min":1,
570
+ "pattern":"([a-zA-Z0-9]+)|(\\$(\\.[\\w_-]+(\\[(\\d+|\\*)\\])*)*)"
571
+ },
572
+ "DbUser":{
573
+ "type":"string",
574
+ "max":128,
575
+ "min":1,
576
+ "pattern":"([a-zA-Z0-9]+)|(\\$(\\.[\\w_-]+(\\[(\\d+|\\*)\\])*)*)"
577
+ },
566
578
  "DeactivateEventSourceRequest":{
567
579
  "type":"structure",
568
580
  "required":["Name"],
@@ -1218,6 +1230,27 @@
1218
1230
  "max":512,
1219
1231
  "pattern":"[^\\x00-\\x09\\x0B\\x0C\\x0E-\\x1F\\x7F]+"
1220
1232
  },
1233
+ "RedshiftDataParameters":{
1234
+ "type":"structure",
1235
+ "required":[
1236
+ "Database",
1237
+ "Sql"
1238
+ ],
1239
+ "members":{
1240
+ "SecretManagerArn":{"shape":"RedshiftSecretManagerArn"},
1241
+ "Database":{"shape":"Database"},
1242
+ "DbUser":{"shape":"DbUser"},
1243
+ "Sql":{"shape":"Sql"},
1244
+ "StatementName":{"shape":"StatementName"},
1245
+ "WithEvent":{"shape":"Boolean"}
1246
+ }
1247
+ },
1248
+ "RedshiftSecretManagerArn":{
1249
+ "type":"string",
1250
+ "max":1600,
1251
+ "min":1,
1252
+ "pattern":"(^arn:aws([a-z]|\\-)*:secretsmanager:[a-z0-9-.]+:.*)|(\\$(\\.[\\w_-]+(\\[(\\d+|\\*)\\])*)*)"
1253
+ },
1221
1254
  "RemovePermissionRequest":{
1222
1255
  "type":"structure",
1223
1256
  "required":["StatementId"],
@@ -1364,6 +1397,11 @@
1364
1397
  "type":"string",
1365
1398
  "max":256
1366
1399
  },
1400
+ "Sql":{
1401
+ "type":"string",
1402
+ "max":100000,
1403
+ "min":1
1404
+ },
1367
1405
  "SqsParameters":{
1368
1406
  "type":"structure",
1369
1407
  "members":{
@@ -1376,6 +1414,11 @@
1376
1414
  "min":1,
1377
1415
  "pattern":"[a-zA-Z0-9-_]+"
1378
1416
  },
1417
+ "StatementName":{
1418
+ "type":"string",
1419
+ "max":500,
1420
+ "min":1
1421
+ },
1379
1422
  "String":{"type":"string"},
1380
1423
  "StringList":{
1381
1424
  "type":"list",
@@ -1444,7 +1487,8 @@
1444
1487
  "EcsParameters":{"shape":"EcsParameters"},
1445
1488
  "BatchParameters":{"shape":"BatchParameters"},
1446
1489
  "SqsParameters":{"shape":"SqsParameters"},
1447
- "HttpParameters":{"shape":"HttpParameters"}
1490
+ "HttpParameters":{"shape":"HttpParameters"},
1491
+ "RedshiftDataParameters":{"shape":"RedshiftDataParameters"}
1448
1492
  }
1449
1493
  },
1450
1494
  "TargetArn":{
@@ -563,6 +563,18 @@
563
563
  "EventSourceArn":{"shape":"String"}
564
564
  }
565
565
  },
566
+ "Database":{
567
+ "type":"string",
568
+ "max":64,
569
+ "min":1,
570
+ "pattern":"([a-zA-Z0-9]+)|(\\$(\\.[\\w_-]+(\\[(\\d+|\\*)\\])*)*)"
571
+ },
572
+ "DbUser":{
573
+ "type":"string",
574
+ "max":128,
575
+ "min":1,
576
+ "pattern":"([a-zA-Z0-9]+)|(\\$(\\.[\\w_-]+(\\[(\\d+|\\*)\\])*)*)"
577
+ },
566
578
  "DeactivateEventSourceRequest":{
567
579
  "type":"structure",
568
580
  "required":["Name"],
@@ -1218,6 +1230,27 @@
1218
1230
  "max":512,
1219
1231
  "pattern":"[^\\x00-\\x09\\x0B\\x0C\\x0E-\\x1F\\x7F]+"
1220
1232
  },
1233
+ "RedshiftDataParameters":{
1234
+ "type":"structure",
1235
+ "required":[
1236
+ "Database",
1237
+ "Sql"
1238
+ ],
1239
+ "members":{
1240
+ "SecretManagerArn":{"shape":"RedshiftSecretManagerArn"},
1241
+ "Database":{"shape":"Database"},
1242
+ "DbUser":{"shape":"DbUser"},
1243
+ "Sql":{"shape":"Sql"},
1244
+ "StatementName":{"shape":"StatementName"},
1245
+ "WithEvent":{"shape":"Boolean"}
1246
+ }
1247
+ },
1248
+ "RedshiftSecretManagerArn":{
1249
+ "type":"string",
1250
+ "max":1600,
1251
+ "min":1,
1252
+ "pattern":"(^arn:aws([a-z]|\\-)*:secretsmanager:[a-z0-9-.]+:.*)|(\\$(\\.[\\w_-]+(\\[(\\d+|\\*)\\])*)*)"
1253
+ },
1221
1254
  "RemovePermissionRequest":{
1222
1255
  "type":"structure",
1223
1256
  "required":["StatementId"],
@@ -1364,6 +1397,11 @@
1364
1397
  "type":"string",
1365
1398
  "max":256
1366
1399
  },
1400
+ "Sql":{
1401
+ "type":"string",
1402
+ "max":100000,
1403
+ "min":1
1404
+ },
1367
1405
  "SqsParameters":{
1368
1406
  "type":"structure",
1369
1407
  "members":{
@@ -1376,6 +1414,11 @@
1376
1414
  "min":1,
1377
1415
  "pattern":"[a-zA-Z0-9-_]+"
1378
1416
  },
1417
+ "StatementName":{
1418
+ "type":"string",
1419
+ "max":500,
1420
+ "min":1
1421
+ },
1379
1422
  "String":{"type":"string"},
1380
1423
  "StringList":{
1381
1424
  "type":"list",
@@ -1444,7 +1487,8 @@
1444
1487
  "EcsParameters":{"shape":"EcsParameters"},
1445
1488
  "BatchParameters":{"shape":"BatchParameters"},
1446
1489
  "SqsParameters":{"shape":"SqsParameters"},
1447
- "HttpParameters":{"shape":"HttpParameters"}
1490
+ "HttpParameters":{"shape":"HttpParameters"},
1491
+ "RedshiftDataParameters":{"shape":"RedshiftDataParameters"}
1448
1492
  }
1449
1493
  },
1450
1494
  "TargetArn":{
@@ -1398,9 +1398,9 @@
1398
1398
  },
1399
1399
  "KmsEncryptionKeyArn":{
1400
1400
  "type":"string",
1401
- "max":80,
1401
+ "max":90,
1402
1402
  "min":7,
1403
- "pattern":"^\\w{8}-\\w{4}-\\w{4}-\\w{4}-\\w{12}$|DEFAULT|arn:[a-zA-Z0-9-]+:kms:[a-zA-Z0-9-]+:\\d{12}:key:[a-zA-Z0-9-_]+|[a-zA-Z0-9-_]\\S+"
1403
+ "pattern":"^\\w{8}-\\w{4}-\\w{4}-\\w{4}-\\w{12}|DEFAULT|arn:[a-zA-Z0-9-]+:kms:[a-zA-Z0-9-]+:\\d{12}:key\\/\\w{8}-\\w{4}-\\w{4}-\\w{4}-\\w{12}$"
1404
1404
  },
1405
1405
  "Label":{
1406
1406
  "type":"structure",
@@ -2266,7 +2266,7 @@
2266
2266
  },
2267
2267
  "variableValue":{
2268
2268
  "type":"string",
2269
- "max":256,
2269
+ "max":1024,
2270
2270
  "min":1,
2271
2271
  "sensitive":true
2272
2272
  },
@@ -188,6 +188,22 @@
188
188
  {"shape":"OperationTimeoutException"}
189
189
  ]
190
190
  },
191
+ "BatchUpdatePartition":{
192
+ "name":"BatchUpdatePartition",
193
+ "http":{
194
+ "method":"POST",
195
+ "requestUri":"/"
196
+ },
197
+ "input":{"shape":"BatchUpdatePartitionRequest"},
198
+ "output":{"shape":"BatchUpdatePartitionResponse"},
199
+ "errors":[
200
+ {"shape":"InvalidInputException"},
201
+ {"shape":"EntityNotFoundException"},
202
+ {"shape":"OperationTimeoutException"},
203
+ {"shape":"InternalServiceException"},
204
+ {"shape":"GlueEncryptionException"}
205
+ ]
206
+ },
191
207
  "CancelMLTaskRun":{
192
208
  "name":"CancelMLTaskRun",
193
209
  "http":{
@@ -2352,6 +2368,54 @@
2352
2368
  "type":"list",
2353
2369
  "member":{"shape":"BatchStopJobRunSuccessfulSubmission"}
2354
2370
  },
2371
+ "BatchUpdatePartitionFailureEntry":{
2372
+ "type":"structure",
2373
+ "members":{
2374
+ "PartitionValueList":{"shape":"BoundedPartitionValueList"},
2375
+ "ErrorDetail":{"shape":"ErrorDetail"}
2376
+ }
2377
+ },
2378
+ "BatchUpdatePartitionFailureList":{
2379
+ "type":"list",
2380
+ "member":{"shape":"BatchUpdatePartitionFailureEntry"}
2381
+ },
2382
+ "BatchUpdatePartitionRequest":{
2383
+ "type":"structure",
2384
+ "required":[
2385
+ "DatabaseName",
2386
+ "TableName",
2387
+ "Entries"
2388
+ ],
2389
+ "members":{
2390
+ "CatalogId":{"shape":"CatalogIdString"},
2391
+ "DatabaseName":{"shape":"NameString"},
2392
+ "TableName":{"shape":"NameString"},
2393
+ "Entries":{"shape":"BatchUpdatePartitionRequestEntryList"}
2394
+ }
2395
+ },
2396
+ "BatchUpdatePartitionRequestEntry":{
2397
+ "type":"structure",
2398
+ "required":[
2399
+ "PartitionValueList",
2400
+ "PartitionInput"
2401
+ ],
2402
+ "members":{
2403
+ "PartitionValueList":{"shape":"BoundedPartitionValueList"},
2404
+ "PartitionInput":{"shape":"PartitionInput"}
2405
+ }
2406
+ },
2407
+ "BatchUpdatePartitionRequestEntryList":{
2408
+ "type":"list",
2409
+ "member":{"shape":"BatchUpdatePartitionRequestEntry"},
2410
+ "max":100,
2411
+ "min":1
2412
+ },
2413
+ "BatchUpdatePartitionResponse":{
2414
+ "type":"structure",
2415
+ "members":{
2416
+ "Errors":{"shape":"BatchUpdatePartitionFailureList"}
2417
+ }
2418
+ },
2355
2419
  "BinaryColumnStatisticsData":{
2356
2420
  "type":"structure",
2357
2421
  "required":[