aws-sdk-core 2.11.397 → 2.11.398

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 30971c1a0237f849614f5ab6b739d5084efb727b
4
- data.tar.gz: 8b739af70ce3cf551c202483f682cba6d1a3c67d
3
+ metadata.gz: 2702a404c2894b9e764d1d89234ec844c290488c
4
+ data.tar.gz: 247fdfddad50c6fce70368b5c69de7a13c48be59
5
5
  SHA512:
6
- metadata.gz: 31cbaebde014861d4b4f71f123dd747e5965a6f4e773cf49308f0d89c82e0d228943b81ed619e82fe6b3bff2cd68e985f0b6b24f007ce3e2b9c2f9e6b2a7dd4e
7
- data.tar.gz: 0aac8d1bebae2d3153df1b7e681f191c8d80544ecabf8043670cc2910a0860dd744978eeeba73e4dbadf0f08c4ca061ef46d5efcba2dd21ff5104948a6014591
6
+ metadata.gz: d00a050b41cea34b722a30e93d93b97fa1c5796f910325c42dcc239e15e952788277e22924c48ab48590b36fea79cd30f8a694752b2ee4c2c45d3aa5ea144cf4
7
+ data.tar.gz: '09bccce26eccdf0a56c909dd02114a441a0a0806e040d4b8371e693650f4afec0b37982b6a663434bcfe025e59b5d74357a69140577af8b432a4dea26ec14779'
@@ -2571,7 +2571,8 @@
2571
2571
  "REFRESH_TOKEN",
2572
2572
  "CUSTOM_AUTH",
2573
2573
  "ADMIN_NO_SRP_AUTH",
2574
- "USER_PASSWORD_AUTH"
2574
+ "USER_PASSWORD_AUTH",
2575
+ "ADMIN_USER_PASSWORD_AUTH"
2575
2576
  ]
2576
2577
  },
2577
2578
  "AuthParametersType":{
@@ -2960,7 +2961,8 @@
2960
2961
  "AllowedOAuthFlows":{"shape":"OAuthFlowsType"},
2961
2962
  "AllowedOAuthScopes":{"shape":"ScopeListType"},
2962
2963
  "AllowedOAuthFlowsUserPoolClient":{"shape":"BooleanType"},
2963
- "AnalyticsConfiguration":{"shape":"AnalyticsConfigurationType"}
2964
+ "AnalyticsConfiguration":{"shape":"AnalyticsConfigurationType"},
2965
+ "PreventUserExistenceErrors":{"shape":"PreventUserExistenceErrorTypes"}
2964
2966
  }
2965
2967
  },
2966
2968
  "CreateUserPoolClientResponse":{
@@ -3488,7 +3490,12 @@
3488
3490
  "enum":[
3489
3491
  "ADMIN_NO_SRP_AUTH",
3490
3492
  "CUSTOM_AUTH_FLOW_ONLY",
3491
- "USER_PASSWORD_AUTH"
3493
+ "USER_PASSWORD_AUTH",
3494
+ "ALLOW_ADMIN_USER_PASSWORD_AUTH",
3495
+ "ALLOW_CUSTOM_AUTH",
3496
+ "ALLOW_USER_PASSWORD_AUTH",
3497
+ "ALLOW_USER_SRP_AUTH",
3498
+ "ALLOW_REFRESH_TOKEN_AUTH"
3492
3499
  ]
3493
3500
  },
3494
3501
  "FeedbackValueType":{
@@ -4218,6 +4225,13 @@
4218
4225
  },
4219
4226
  "exception":true
4220
4227
  },
4228
+ "PreventUserExistenceErrorTypes":{
4229
+ "type":"string",
4230
+ "enum":[
4231
+ "LEGACY",
4232
+ "ENABLED"
4233
+ ]
4234
+ },
4221
4235
  "ProviderDescription":{
4222
4236
  "type":"structure",
4223
4237
  "members":{
@@ -4961,7 +4975,8 @@
4961
4975
  "AllowedOAuthFlows":{"shape":"OAuthFlowsType"},
4962
4976
  "AllowedOAuthScopes":{"shape":"ScopeListType"},
4963
4977
  "AllowedOAuthFlowsUserPoolClient":{"shape":"BooleanType"},
4964
- "AnalyticsConfiguration":{"shape":"AnalyticsConfigurationType"}
4978
+ "AnalyticsConfiguration":{"shape":"AnalyticsConfigurationType"},
4979
+ "PreventUserExistenceErrors":{"shape":"PreventUserExistenceErrorTypes"}
4965
4980
  }
4966
4981
  },
4967
4982
  "UpdateUserPoolClientResponse":{
@@ -5156,7 +5171,8 @@
5156
5171
  "shape":"BooleanType",
5157
5172
  "box":true
5158
5173
  },
5159
- "AnalyticsConfiguration":{"shape":"AnalyticsConfigurationType"}
5174
+ "AnalyticsConfiguration":{"shape":"AnalyticsConfigurationType"},
5175
+ "PreventUserExistenceErrors":{"shape":"PreventUserExistenceErrorTypes"}
5160
5176
  }
5161
5177
  },
5162
5178
  "UserPoolDescriptionType":{
@@ -253,6 +253,22 @@
253
253
  {"shape":"InternalServiceException"}
254
254
  ]
255
255
  },
256
+ "ListTagsForResource":{
257
+ "name":"ListTagsForResource",
258
+ "http":{
259
+ "method":"GET",
260
+ "requestUri":"/tags/{resourceArn}"
261
+ },
262
+ "input":{"shape":"ListTagsForResourceRequest"},
263
+ "output":{"shape":"ListTagsForResourceResponse"},
264
+ "errors":[
265
+ {"shape":"InvalidRequestException"},
266
+ {"shape":"InvalidParameterException"},
267
+ {"shape":"InternalServiceException"},
268
+ {"shape":"ResourceNotFoundException"},
269
+ {"shape":"ThrottlingException"}
270
+ ]
271
+ },
256
272
  "ListUserHierarchyGroups":{
257
273
  "name":"ListUserHierarchyGroups",
258
274
  "http":{
@@ -319,6 +335,36 @@
319
335
  {"shape":"InternalServiceException"}
320
336
  ]
321
337
  },
338
+ "TagResource":{
339
+ "name":"TagResource",
340
+ "http":{
341
+ "method":"POST",
342
+ "requestUri":"/tags/{resourceArn}"
343
+ },
344
+ "input":{"shape":"TagResourceRequest"},
345
+ "errors":[
346
+ {"shape":"InvalidRequestException"},
347
+ {"shape":"InvalidParameterException"},
348
+ {"shape":"InternalServiceException"},
349
+ {"shape":"ResourceNotFoundException"},
350
+ {"shape":"ThrottlingException"}
351
+ ]
352
+ },
353
+ "UntagResource":{
354
+ "name":"UntagResource",
355
+ "http":{
356
+ "method":"DELETE",
357
+ "requestUri":"/tags/{resourceArn}"
358
+ },
359
+ "input":{"shape":"UntagResourceRequest"},
360
+ "errors":[
361
+ {"shape":"InvalidRequestException"},
362
+ {"shape":"InvalidParameterException"},
363
+ {"shape":"InternalServiceException"},
364
+ {"shape":"ResourceNotFoundException"},
365
+ {"shape":"ThrottlingException"}
366
+ ]
367
+ },
322
368
  "UpdateContactAttributes":{
323
369
  "name":"UpdateContactAttributes",
324
370
  "http":{
@@ -537,7 +583,8 @@
537
583
  "shape":"InstanceId",
538
584
  "location":"uri",
539
585
  "locationName":"InstanceId"
540
- }
586
+ },
587
+ "Tags":{"shape":"TagMap"}
541
588
  }
542
589
  },
543
590
  "CreateUserResponse":{
@@ -1210,6 +1257,23 @@
1210
1257
  "NextToken":{"shape":"NextToken"}
1211
1258
  }
1212
1259
  },
1260
+ "ListTagsForResourceRequest":{
1261
+ "type":"structure",
1262
+ "required":["resourceArn"],
1263
+ "members":{
1264
+ "resourceArn":{
1265
+ "shape":"ARN",
1266
+ "location":"uri",
1267
+ "locationName":"resourceArn"
1268
+ }
1269
+ }
1270
+ },
1271
+ "ListTagsForResourceResponse":{
1272
+ "type":"structure",
1273
+ "members":{
1274
+ "tags":{"shape":"TagMap"}
1275
+ }
1276
+ },
1213
1277
  "ListUserHierarchyGroupsRequest":{
1214
1278
  "type":"structure",
1215
1279
  "required":["InstanceId"],
@@ -1718,6 +1782,44 @@
1718
1782
  "members":{
1719
1783
  }
1720
1784
  },
1785
+ "TagKey":{
1786
+ "type":"string",
1787
+ "max":128,
1788
+ "min":1,
1789
+ "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
1790
+ },
1791
+ "TagKeyList":{
1792
+ "type":"list",
1793
+ "member":{"shape":"TagKey"},
1794
+ "max":50,
1795
+ "min":1
1796
+ },
1797
+ "TagMap":{
1798
+ "type":"map",
1799
+ "key":{"shape":"TagKey"},
1800
+ "value":{"shape":"TagValue"},
1801
+ "max":50,
1802
+ "min":1
1803
+ },
1804
+ "TagResourceRequest":{
1805
+ "type":"structure",
1806
+ "required":[
1807
+ "resourceArn",
1808
+ "tags"
1809
+ ],
1810
+ "members":{
1811
+ "resourceArn":{
1812
+ "shape":"ARN",
1813
+ "location":"uri",
1814
+ "locationName":"resourceArn"
1815
+ },
1816
+ "tags":{"shape":"TagMap"}
1817
+ }
1818
+ },
1819
+ "TagValue":{
1820
+ "type":"string",
1821
+ "max":256
1822
+ },
1721
1823
  "Threshold":{
1722
1824
  "type":"structure",
1723
1825
  "members":{
@@ -1745,6 +1847,25 @@
1745
1847
  "PERCENT"
1746
1848
  ]
1747
1849
  },
1850
+ "UntagResourceRequest":{
1851
+ "type":"structure",
1852
+ "required":[
1853
+ "resourceArn",
1854
+ "tagKeys"
1855
+ ],
1856
+ "members":{
1857
+ "resourceArn":{
1858
+ "shape":"ARN",
1859
+ "location":"uri",
1860
+ "locationName":"resourceArn"
1861
+ },
1862
+ "tagKeys":{
1863
+ "shape":"TagKeyList",
1864
+ "location":"querystring",
1865
+ "locationName":"tagKeys"
1866
+ }
1867
+ }
1868
+ },
1748
1869
  "UpdateContactAttributesRequest":{
1749
1870
  "type":"structure",
1750
1871
  "required":[
@@ -1878,7 +1999,8 @@
1878
1999
  "DirectoryUserId":{"shape":"DirectoryUserId"},
1879
2000
  "SecurityProfileIds":{"shape":"SecurityProfileIds"},
1880
2001
  "RoutingProfileId":{"shape":"RoutingProfileId"},
1881
- "HierarchyGroupId":{"shape":"HierarchyGroupId"}
2002
+ "HierarchyGroupId":{"shape":"HierarchyGroupId"},
2003
+ "Tags":{"shape":"TagMap"}
1882
2004
  }
1883
2005
  },
1884
2006
  "UserId":{"type":"string"},
@@ -46,7 +46,8 @@
46
46
  {"shape":"InvalidEndpointRegionException"},
47
47
  {"shape":"TimestampOutOfBoundsException"},
48
48
  {"shape":"DuplicateRequestException"},
49
- {"shape":"ThrottlingException"}
49
+ {"shape":"ThrottlingException"},
50
+ {"shape":"CustomerNotEntitledException"}
50
51
  ]
51
52
  },
52
53
  "RegisterUsage":{
@@ -13,6 +13,22 @@
13
13
  "uid":"personalize-2018-05-22"
14
14
  },
15
15
  "operations":{
16
+ "CreateBatchInferenceJob":{
17
+ "name":"CreateBatchInferenceJob",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/"
21
+ },
22
+ "input":{"shape":"CreateBatchInferenceJobRequest"},
23
+ "output":{"shape":"CreateBatchInferenceJobResponse"},
24
+ "errors":[
25
+ {"shape":"InvalidInputException"},
26
+ {"shape":"ResourceAlreadyExistsException"},
27
+ {"shape":"LimitExceededException"},
28
+ {"shape":"ResourceNotFoundException"},
29
+ {"shape":"ResourceInUseException"}
30
+ ]
31
+ },
16
32
  "CreateCampaign":{
17
33
  "name":"CreateCampaign",
18
34
  "http":{
@@ -237,6 +253,20 @@
237
253
  ],
238
254
  "idempotent":true
239
255
  },
256
+ "DescribeBatchInferenceJob":{
257
+ "name":"DescribeBatchInferenceJob",
258
+ "http":{
259
+ "method":"POST",
260
+ "requestUri":"/"
261
+ },
262
+ "input":{"shape":"DescribeBatchInferenceJobRequest"},
263
+ "output":{"shape":"DescribeBatchInferenceJobResponse"},
264
+ "errors":[
265
+ {"shape":"InvalidInputException"},
266
+ {"shape":"ResourceNotFoundException"}
267
+ ],
268
+ "idempotent":true
269
+ },
240
270
  "DescribeCampaign":{
241
271
  "name":"DescribeCampaign",
242
272
  "http":{
@@ -391,6 +421,20 @@
391
421
  {"shape":"ResourceInUseException"}
392
422
  ]
393
423
  },
424
+ "ListBatchInferenceJobs":{
425
+ "name":"ListBatchInferenceJobs",
426
+ "http":{
427
+ "method":"POST",
428
+ "requestUri":"/"
429
+ },
430
+ "input":{"shape":"ListBatchInferenceJobsRequest"},
431
+ "output":{"shape":"ListBatchInferenceJobsResponse"},
432
+ "errors":[
433
+ {"shape":"InvalidInputException"},
434
+ {"shape":"InvalidNextTokenException"}
435
+ ],
436
+ "idempotent":true
437
+ },
394
438
  "ListCampaigns":{
395
439
  "name":"ListCampaigns",
396
440
  "http":{
@@ -586,6 +630,52 @@
586
630
  "type":"string",
587
631
  "max":10000
588
632
  },
633
+ "BatchInferenceJob":{
634
+ "type":"structure",
635
+ "members":{
636
+ "jobName":{"shape":"Name"},
637
+ "batchInferenceJobArn":{"shape":"Arn"},
638
+ "failureReason":{"shape":"FailureReason"},
639
+ "solutionVersionArn":{"shape":"Arn"},
640
+ "numResults":{"shape":"NumBatchResults"},
641
+ "jobInput":{"shape":"BatchInferenceJobInput"},
642
+ "jobOutput":{"shape":"BatchInferenceJobOutput"},
643
+ "roleArn":{"shape":"RoleArn"},
644
+ "status":{"shape":"Status"},
645
+ "creationDateTime":{"shape":"Date"},
646
+ "lastUpdatedDateTime":{"shape":"Date"}
647
+ }
648
+ },
649
+ "BatchInferenceJobInput":{
650
+ "type":"structure",
651
+ "required":["s3DataSource"],
652
+ "members":{
653
+ "s3DataSource":{"shape":"S3DataConfig"}
654
+ }
655
+ },
656
+ "BatchInferenceJobOutput":{
657
+ "type":"structure",
658
+ "required":["s3DataDestination"],
659
+ "members":{
660
+ "s3DataDestination":{"shape":"S3DataConfig"}
661
+ }
662
+ },
663
+ "BatchInferenceJobSummary":{
664
+ "type":"structure",
665
+ "members":{
666
+ "batchInferenceJobArn":{"shape":"Arn"},
667
+ "jobName":{"shape":"Name"},
668
+ "status":{"shape":"Status"},
669
+ "creationDateTime":{"shape":"Date"},
670
+ "lastUpdatedDateTime":{"shape":"Date"},
671
+ "failureReason":{"shape":"FailureReason"}
672
+ }
673
+ },
674
+ "BatchInferenceJobs":{
675
+ "type":"list",
676
+ "member":{"shape":"BatchInferenceJobSummary"},
677
+ "max":100
678
+ },
589
679
  "Boolean":{"type":"boolean"},
590
680
  "Campaign":{
591
681
  "type":"structure",
@@ -670,6 +760,30 @@
670
760
  "type":"double",
671
761
  "min":-1000000
672
762
  },
763
+ "CreateBatchInferenceJobRequest":{
764
+ "type":"structure",
765
+ "required":[
766
+ "jobName",
767
+ "solutionVersionArn",
768
+ "jobInput",
769
+ "jobOutput",
770
+ "roleArn"
771
+ ],
772
+ "members":{
773
+ "jobName":{"shape":"Name"},
774
+ "solutionVersionArn":{"shape":"Arn"},
775
+ "numResults":{"shape":"NumBatchResults"},
776
+ "jobInput":{"shape":"BatchInferenceJobInput"},
777
+ "jobOutput":{"shape":"BatchInferenceJobOutput"},
778
+ "roleArn":{"shape":"RoleArn"}
779
+ }
780
+ },
781
+ "CreateBatchInferenceJobResponse":{
782
+ "type":"structure",
783
+ "members":{
784
+ "batchInferenceJobArn":{"shape":"Arn"}
785
+ }
786
+ },
673
787
  "CreateCampaignRequest":{
674
788
  "type":"structure",
675
789
  "required":[
@@ -1039,6 +1153,19 @@
1039
1153
  "algorithm":{"shape":"Algorithm"}
1040
1154
  }
1041
1155
  },
1156
+ "DescribeBatchInferenceJobRequest":{
1157
+ "type":"structure",
1158
+ "required":["batchInferenceJobArn"],
1159
+ "members":{
1160
+ "batchInferenceJobArn":{"shape":"Arn"}
1161
+ }
1162
+ },
1163
+ "DescribeBatchInferenceJobResponse":{
1164
+ "type":"structure",
1165
+ "members":{
1166
+ "batchInferenceJob":{"shape":"BatchInferenceJob"}
1167
+ }
1168
+ },
1042
1169
  "DescribeCampaignRequest":{
1043
1170
  "type":"structure",
1044
1171
  "required":["campaignArn"],
@@ -1337,6 +1464,21 @@
1337
1464
  },
1338
1465
  "exception":true
1339
1466
  },
1467
+ "ListBatchInferenceJobsRequest":{
1468
+ "type":"structure",
1469
+ "members":{
1470
+ "solutionVersionArn":{"shape":"Arn"},
1471
+ "nextToken":{"shape":"NextToken"},
1472
+ "maxResults":{"shape":"MaxResults"}
1473
+ }
1474
+ },
1475
+ "ListBatchInferenceJobsResponse":{
1476
+ "type":"structure",
1477
+ "members":{
1478
+ "batchInferenceJobs":{"shape":"BatchInferenceJobs"},
1479
+ "nextToken":{"shape":"NextToken"}
1480
+ }
1481
+ },
1340
1482
  "ListCampaignsRequest":{
1341
1483
  "type":"structure",
1342
1484
  "members":{
@@ -1500,6 +1642,7 @@
1500
1642
  "type":"string",
1501
1643
  "max":1300
1502
1644
  },
1645
+ "NumBatchResults":{"type":"integer"},
1503
1646
  "ParameterName":{
1504
1647
  "type":"string",
1505
1648
  "max":256
@@ -1579,6 +1722,14 @@
1579
1722
  "max":256,
1580
1723
  "pattern":"arn:([a-z\\d-]+):iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+"
1581
1724
  },
1725
+ "S3DataConfig":{
1726
+ "type":"structure",
1727
+ "required":["path"],
1728
+ "members":{
1729
+ "path":{"shape":"S3Location"},
1730
+ "kmsKeyArn":{"shape":"KmsKeyArn"}
1731
+ }
1732
+ },
1582
1733
  "S3Location":{
1583
1734
  "type":"string",
1584
1735
  "max":256
@@ -1,5 +1,11 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListBatchInferenceJobs": {
4
+ "input_token": "nextToken",
5
+ "limit_key": "maxResults",
6
+ "output_token": "nextToken",
7
+ "result_key": "batchInferenceJobs"
8
+ },
3
9
  "ListCampaigns": {
4
10
  "input_token": "nextToken",
5
11
  "limit_key": "maxResults",
@@ -2198,6 +2198,10 @@
2198
2198
  "type":"string",
2199
2199
  "enum":["Sha256"]
2200
2200
  },
2201
+ "AttachmentIdentifier":{
2202
+ "type":"string",
2203
+ "pattern":"^[a-zA-Z0-9_\\-.]{3,128}$"
2204
+ },
2201
2205
  "AttachmentInformation":{
2202
2206
  "type":"structure",
2203
2207
  "members":{
@@ -2217,17 +2221,21 @@
2217
2221
  "type":"structure",
2218
2222
  "members":{
2219
2223
  "Key":{"shape":"AttachmentsSourceKey"},
2220
- "Values":{"shape":"AttachmentsSourceValues"}
2224
+ "Values":{"shape":"AttachmentsSourceValues"},
2225
+ "Name":{"shape":"AttachmentIdentifier"}
2221
2226
  }
2222
2227
  },
2223
2228
  "AttachmentsSourceKey":{
2224
2229
  "type":"string",
2225
- "enum":["SourceUrl"]
2230
+ "enum":[
2231
+ "SourceUrl",
2232
+ "S3FileUrl"
2233
+ ]
2226
2234
  },
2227
2235
  "AttachmentsSourceList":{
2228
2236
  "type":"list",
2229
2237
  "member":{"shape":"AttachmentsSource"},
2230
- "max":1,
2238
+ "max":20,
2231
2239
  "min":0
2232
2240
  },
2233
2241
  "AttachmentsSourceValue":{
@@ -1578,11 +1578,16 @@
1578
1578
  "endpoints" : {
1579
1579
  "ap-northeast-1" : { },
1580
1580
  "ap-northeast-2" : { },
1581
+ "ap-south-1" : { },
1581
1582
  "ap-southeast-1" : { },
1582
1583
  "ap-southeast-2" : { },
1584
+ "ca-central-1" : { },
1583
1585
  "eu-central-1" : { },
1586
+ "eu-north-1" : { },
1584
1587
  "eu-west-1" : { },
1585
1588
  "eu-west-2" : { },
1589
+ "eu-west-3" : { },
1590
+ "sa-east-1" : { },
1586
1591
  "us-east-1" : { },
1587
1592
  "us-east-2" : { },
1588
1593
  "us-west-1" : { },
@@ -3330,25 +3335,10 @@
3330
3335
  "shield" : {
3331
3336
  "defaults" : {
3332
3337
  "protocols" : [ "https" ],
3333
- "sslCommonName" : "shield.ca-central-1.amazonaws.com"
3338
+ "sslCommonName" : "shield.us-east-1.amazonaws.com"
3334
3339
  },
3335
3340
  "endpoints" : {
3336
- "ap-northeast-1" : { },
3337
- "ap-northeast-2" : { },
3338
- "ap-south-1" : { },
3339
- "ap-southeast-1" : { },
3340
- "ap-southeast-2" : { },
3341
- "ca-central-1" : { },
3342
- "eu-central-1" : { },
3343
- "eu-north-1" : { },
3344
- "eu-west-1" : { },
3345
- "eu-west-2" : { },
3346
- "eu-west-3" : { },
3347
- "sa-east-1" : { },
3348
- "us-east-1" : { },
3349
- "us-east-2" : { },
3350
- "us-west-1" : { },
3351
- "us-west-2" : { }
3341
+ "us-east-1" : { }
3352
3342
  },
3353
3343
  "isRegionalized" : false
3354
3344
  },
@@ -4015,6 +4005,11 @@
4015
4005
  "cn-northwest-1" : { }
4016
4006
  }
4017
4007
  },
4008
+ "dax" : {
4009
+ "endpoints" : {
4010
+ "cn-northwest-1" : { }
4011
+ }
4012
+ },
4018
4013
  "directconnect" : {
4019
4014
  "endpoints" : {
4020
4015
  "cn-north-1" : { },
@@ -4360,6 +4355,11 @@
4360
4355
  "hostname" : "cn.transcribe.cn-northwest-1.amazonaws.com.cn"
4361
4356
  }
4362
4357
  }
4358
+ },
4359
+ "workspaces" : {
4360
+ "endpoints" : {
4361
+ "cn-northwest-1" : { }
4362
+ }
4363
4363
  }
4364
4364
  }
4365
4365
  }, {
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.397'
2
+ VERSION = '2.11.398'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.397
4
+ version: 2.11.398
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-13 00:00:00.000000000 Z
11
+ date: 2019-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath