aws-sdk-core 2.11.499 → 2.11.500

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 470ba257d40a16229d0ed165d67ed65ab043e2050b1696647831ba0c0c121fed
4
- data.tar.gz: 6c7f033da34518238b0c55f2ab4eafdbf8faf068e9d8ec5bf920ca2698732607
3
+ metadata.gz: 9327dfecbd8bb7a35e261ea5ec4b6ba0f5ac847c0feef36541d197fcbc237d66
4
+ data.tar.gz: 21edc212ea99ce2a14c686d70ce70b8cecf8d552c1bce99bef268c4a0083d745
5
5
  SHA512:
6
- metadata.gz: 84187a688e99c8da06e6fbd27cd8e35854dd1cf08cb22d590523ca1fc47c2fd60c097f1a5ad736c25574dedfa781c4370fd36a1cc7f7f66dd59a2c88223622f2
7
- data.tar.gz: 3f026f3ab7252861818206290413cbafb424c79387ae7f44aca8da8877d01d63bd1c7702093fa5f4c1fb3133f5423c9e5b1ae14b248b804af351b331f98e4cce
6
+ metadata.gz: '0890145b1f90935ebe37c4ae4c222d9a04752c91012ffb6bc9225be2e2523b53972da5182549c808ebbbfacffc9afc065281e5e97120f59f2c81f738c8b07109'
7
+ data.tar.gz: 1f8c5c5c2614712f9f2d2ab5505550ae24d564d439b1d455f1eecad05cfc324f2163e68c7c6f34afcecf4840b752737dfa9f4b9142b686a903adbde2b3c54f5d
@@ -271,7 +271,8 @@
271
271
  },
272
272
  "AccountId":{
273
273
  "type":"string",
274
- "max":64
274
+ "max":64,
275
+ "pattern":"^\\d{12}$"
275
276
  },
276
277
  "BadRequestException":{
277
278
  "type":"structure",
@@ -457,6 +458,12 @@
457
458
  "max":1024,
458
459
  "min":1
459
460
  },
461
+ "FunctionArnString":{
462
+ "type":"string",
463
+ "max":1024,
464
+ "min":1,
465
+ "pattern":"(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\\d{1}:)?(\\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
466
+ },
460
467
  "GetAccessPointPolicyRequest":{
461
468
  "type":"structure",
462
469
  "required":[
@@ -583,7 +590,8 @@
583
590
  "IAMRoleArn":{
584
591
  "type":"string",
585
592
  "max":2048,
586
- "min":1
593
+ "min":1,
594
+ "pattern":"arn:[^:]+:iam::\\d{12}:role/.*"
587
595
  },
588
596
  "IdempotencyException":{
589
597
  "type":"structure",
@@ -618,7 +626,8 @@
618
626
  "JobArn":{
619
627
  "type":"string",
620
628
  "max":1024,
621
- "min":1
629
+ "min":1,
630
+ "pattern":"arn:[^:]+:s3:[a-zA-Z0-9\\-]+:\\d{12}:job\\/.*"
622
631
  },
623
632
  "JobCreationTime":{"type":"timestamp"},
624
633
  "JobDescriptor":{
@@ -706,7 +715,8 @@
706
715
  "JobId":{
707
716
  "type":"string",
708
717
  "max":36,
709
- "min":5
718
+ "min":5,
719
+ "pattern":"[a-zA-Z0-9\\-\\_]+"
710
720
  },
711
721
  "JobListDescriptor":{
712
722
  "type":"structure",
@@ -812,6 +822,14 @@
812
822
  "S3InitiateRestoreObject":{
813
823
  "shape":"S3InitiateRestoreObjectOperation",
814
824
  "box":true
825
+ },
826
+ "S3PutObjectLegalHold":{
827
+ "shape":"S3SetObjectLegalHoldOperation",
828
+ "box":true
829
+ },
830
+ "S3PutObjectRetention":{
831
+ "shape":"S3SetObjectRetentionOperation",
832
+ "box":true
815
833
  }
816
834
  }
817
835
  },
@@ -918,7 +936,7 @@
918
936
  "LambdaInvokeOperation":{
919
937
  "type":"structure",
920
938
  "members":{
921
- "FunctionArn":{"shape":"NonEmptyMaxLength1024String"}
939
+ "FunctionArn":{"shape":"FunctionArnString"}
922
940
  }
923
941
  },
924
942
  "ListAccessPointsRequest":{
@@ -969,7 +987,7 @@
969
987
  "locationName":"jobStatuses"
970
988
  },
971
989
  "NextToken":{
972
- "shape":"NonEmptyMaxLength1024String",
990
+ "shape":"StringForNextToken",
973
991
  "location":"querystring",
974
992
  "locationName":"nextToken"
975
993
  },
@@ -984,7 +1002,7 @@
984
1002
  "ListJobsResult":{
985
1003
  "type":"structure",
986
1004
  "members":{
987
- "NextToken":{"shape":"NonEmptyMaxLength1024String"},
1005
+ "NextToken":{"shape":"StringForNextToken"},
988
1006
  "Jobs":{"shape":"JobListDescriptorList"}
989
1007
  }
990
1008
  },
@@ -1047,7 +1065,9 @@
1047
1065
  "S3PutObjectCopy",
1048
1066
  "S3PutObjectAcl",
1049
1067
  "S3PutObjectTagging",
1050
- "S3InitiateRestoreObject"
1068
+ "S3InitiateRestoreObject",
1069
+ "S3PutObjectLegalHold",
1070
+ "S3PutObjectRetention"
1051
1071
  ]
1052
1072
  },
1053
1073
  "Policy":{"type":"string"},
@@ -1184,7 +1204,8 @@
1184
1204
  "S3BucketArnString":{
1185
1205
  "type":"string",
1186
1206
  "max":128,
1187
- "min":1
1207
+ "min":1,
1208
+ "pattern":"arn:[^:]+:s3:.*"
1188
1209
  },
1189
1210
  "S3CannedAccessControlList":{
1190
1211
  "type":"string",
@@ -1280,7 +1301,8 @@
1280
1301
  "S3KeyArnString":{
1281
1302
  "type":"string",
1282
1303
  "max":2000,
1283
- "min":1
1304
+ "min":1,
1305
+ "pattern":"arn:[^:]+:s3:.*"
1284
1306
  },
1285
1307
  "S3MetadataDirective":{
1286
1308
  "type":"string",
@@ -1289,6 +1311,13 @@
1289
1311
  "REPLACE"
1290
1312
  ]
1291
1313
  },
1314
+ "S3ObjectLockLegalHold":{
1315
+ "type":"structure",
1316
+ "required":["Status"],
1317
+ "members":{
1318
+ "Status":{"shape":"S3ObjectLockLegalHoldStatus"}
1319
+ }
1320
+ },
1292
1321
  "S3ObjectLockLegalHoldStatus":{
1293
1322
  "type":"string",
1294
1323
  "enum":[
@@ -1303,6 +1332,13 @@
1303
1332
  "GOVERNANCE"
1304
1333
  ]
1305
1334
  },
1335
+ "S3ObjectLockRetentionMode":{
1336
+ "type":"string",
1337
+ "enum":[
1338
+ "COMPLIANCE",
1339
+ "GOVERNANCE"
1340
+ ]
1341
+ },
1306
1342
  "S3ObjectMetadata":{
1307
1343
  "type":"structure",
1308
1344
  "members":{
@@ -1344,6 +1380,13 @@
1344
1380
  "WRITE_ACP"
1345
1381
  ]
1346
1382
  },
1383
+ "S3Retention":{
1384
+ "type":"structure",
1385
+ "members":{
1386
+ "RetainUntilDate":{"shape":"TimeStamp"},
1387
+ "Mode":{"shape":"S3ObjectLockRetentionMode"}
1388
+ }
1389
+ },
1347
1390
  "S3SSEAlgorithm":{
1348
1391
  "type":"string",
1349
1392
  "enum":[
@@ -1357,6 +1400,24 @@
1357
1400
  "AccessControlPolicy":{"shape":"S3AccessControlPolicy"}
1358
1401
  }
1359
1402
  },
1403
+ "S3SetObjectLegalHoldOperation":{
1404
+ "type":"structure",
1405
+ "required":["LegalHold"],
1406
+ "members":{
1407
+ "LegalHold":{"shape":"S3ObjectLockLegalHold"}
1408
+ }
1409
+ },
1410
+ "S3SetObjectRetentionOperation":{
1411
+ "type":"structure",
1412
+ "required":["Retention"],
1413
+ "members":{
1414
+ "BypassGovernanceRetention":{
1415
+ "shape":"Boolean",
1416
+ "box":true
1417
+ },
1418
+ "Retention":{"shape":"S3Retention"}
1419
+ }
1420
+ },
1360
1421
  "S3SetObjectTaggingOperation":{
1361
1422
  "type":"structure",
1362
1423
  "members":{
@@ -1381,8 +1442,8 @@
1381
1442
  "Value"
1382
1443
  ],
1383
1444
  "members":{
1384
- "Key":{"shape":"NonEmptyMaxLength1024String"},
1385
- "Value":{"shape":"MaxLength1024String"}
1445
+ "Key":{"shape":"TagKeyString"},
1446
+ "Value":{"shape":"TagValueString"}
1386
1447
  }
1387
1448
  },
1388
1449
  "S3TagSet":{
@@ -1396,12 +1457,29 @@
1396
1457
  "max":8192
1397
1458
  },
1398
1459
  "Setting":{"type":"boolean"},
1460
+ "StringForNextToken":{
1461
+ "type":"string",
1462
+ "max":1024,
1463
+ "min":1,
1464
+ "pattern":"^[A-Za-z0-9\\+\\:\\/\\=\\?\\#-_]+$"
1465
+ },
1399
1466
  "SuspendedCause":{
1400
1467
  "type":"string",
1401
1468
  "max":1024,
1402
1469
  "min":1
1403
1470
  },
1404
1471
  "SuspendedDate":{"type":"timestamp"},
1472
+ "TagKeyString":{
1473
+ "type":"string",
1474
+ "max":1024,
1475
+ "min":1,
1476
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:=+\\-@%]*)$"
1477
+ },
1478
+ "TagValueString":{
1479
+ "type":"string",
1480
+ "max":1024,
1481
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:=+\\-@%]*)$"
1482
+ },
1405
1483
  "TimeStamp":{"type":"timestamp"},
1406
1484
  "TooManyRequestsException":{
1407
1485
  "type":"structure",
@@ -7051,6 +7051,16 @@
7051
7051
  "us-gov-west-1" : { }
7052
7052
  }
7053
7053
  },
7054
+ "pinpoint" : {
7055
+ "defaults" : {
7056
+ "credentialScope" : {
7057
+ "service" : "mobiletargeting"
7058
+ }
7059
+ },
7060
+ "endpoints" : {
7061
+ "us-gov-west-1" : { }
7062
+ }
7063
+ },
7054
7064
  "polly" : {
7055
7065
  "endpoints" : {
7056
7066
  "fips-us-gov-west-1" : {
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.499'
2
+ VERSION = '2.11.500'
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.499
4
+ version: 2.11.500
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: 2020-05-01 00:00:00.000000000 Z
11
+ date: 2020-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath