aws-sdk-core 2.11.590 → 2.11.591

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: 851c4ee66ec97b266fe4c5d83da5c48d6a313b02b0ae26efe7a90531072fa1d7
4
- data.tar.gz: 1c2213f766d8d6bdb4a7b14e04dc41e47e04f856c7d9aab2a15a0eb5f3fa7559
3
+ metadata.gz: f929d59ee82c6f514ae64076b1ff054b840698edae37cdbcead8456e94f3d389
4
+ data.tar.gz: 907378faef2ea5179d3d8e5e3b36a7f02f35d6a0ddb1b3e9e4f11783f84d5037
5
5
  SHA512:
6
- metadata.gz: 3d7c3605769268bacf02b1311a7e767c7d51e17a5fa804d62b7eb52f7d72e0e0fe2b144b05fe9eca4550e3a62aa9a5f008ce5330c83051315b4ce724b0c426a2
7
- data.tar.gz: a13e186e19b1d49a348fac1bc52cdfbbafe7d9bea8fc0a3084725737b0f43cd26e29846ebb9a793b0f93ed9001460790b9b53875837bebbf5ca1dc3f5f4958fa
6
+ metadata.gz: a1595cdc15d25ca32c2c2de39d723a0f90b65c5f95d880856b773fa47dc64fe85150b0a60643719eec7abca7fe9abbce21bed49c1dc28dbde7e9ac22f86cc8f5
7
+ data.tar.gz: 4a520ab12ac27ba301ba878ae4304e175790e92c1b82ce13f468419a213c1a25c8a37dd2e00a3bffa47c8000f542574d292761fcb51c8177c151b989d8755af3
@@ -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",
@@ -1928,10 +1928,11 @@
1928
1928
  "Locale":{
1929
1929
  "type":"string",
1930
1930
  "enum":[
1931
- "en-US",
1932
- "en-GB",
1933
1931
  "de-DE",
1934
- "en-AU"
1932
+ "en-AU",
1933
+ "en-GB",
1934
+ "en-US",
1935
+ "es-US"
1935
1936
  ]
1936
1937
  },
1937
1938
  "LocaleList":{
@@ -6,6 +6,7 @@
6
6
  "jsonVersion":"1.0",
7
7
  "protocol":"json",
8
8
  "serviceFullName":"Amazon DynamoDB Streams",
9
+ "serviceId":"DynamoDB Streams",
9
10
  "signatureVersion":"v4",
10
11
  "signingName":"dynamodb",
11
12
  "targetPrefix":"DynamoDBStreams_20120810",
@@ -49,6 +49,22 @@
49
49
  ],
50
50
  "idempotent":true
51
51
  },
52
+ "CancelMailboxExportJob":{
53
+ "name":"CancelMailboxExportJob",
54
+ "http":{
55
+ "method":"POST",
56
+ "requestUri":"/"
57
+ },
58
+ "input":{"shape":"CancelMailboxExportJobRequest"},
59
+ "output":{"shape":"CancelMailboxExportJobResponse"},
60
+ "errors":[
61
+ {"shape":"InvalidParameterException"},
62
+ {"shape":"OrganizationNotFoundException"},
63
+ {"shape":"OrganizationStateException"},
64
+ {"shape":"EntityNotFoundException"}
65
+ ],
66
+ "idempotent":true
67
+ },
52
68
  "CreateAlias":{
53
69
  "name":"CreateAlias",
54
70
  "http":{
@@ -279,6 +295,22 @@
279
295
  ],
280
296
  "idempotent":true
281
297
  },
298
+ "DescribeMailboxExportJob":{
299
+ "name":"DescribeMailboxExportJob",
300
+ "http":{
301
+ "method":"POST",
302
+ "requestUri":"/"
303
+ },
304
+ "input":{"shape":"DescribeMailboxExportJobRequest"},
305
+ "output":{"shape":"DescribeMailboxExportJobResponse"},
306
+ "errors":[
307
+ {"shape":"InvalidParameterException"},
308
+ {"shape":"OrganizationNotFoundException"},
309
+ {"shape":"OrganizationStateException"},
310
+ {"shape":"EntityNotFoundException"}
311
+ ],
312
+ "idempotent":true
313
+ },
282
314
  "DescribeOrganization":{
283
315
  "name":"DescribeOrganization",
284
316
  "http":{
@@ -471,6 +503,21 @@
471
503
  ],
472
504
  "idempotent":true
473
505
  },
506
+ "ListMailboxExportJobs":{
507
+ "name":"ListMailboxExportJobs",
508
+ "http":{
509
+ "method":"POST",
510
+ "requestUri":"/"
511
+ },
512
+ "input":{"shape":"ListMailboxExportJobsRequest"},
513
+ "output":{"shape":"ListMailboxExportJobsResponse"},
514
+ "errors":[
515
+ {"shape":"InvalidParameterException"},
516
+ {"shape":"OrganizationNotFoundException"},
517
+ {"shape":"OrganizationStateException"}
518
+ ],
519
+ "idempotent":true
520
+ },
474
521
  "ListMailboxPermissions":{
475
522
  "name":"ListMailboxPermissions",
476
523
  "http":{
@@ -652,6 +699,23 @@
652
699
  ],
653
700
  "idempotent":true
654
701
  },
702
+ "StartMailboxExportJob":{
703
+ "name":"StartMailboxExportJob",
704
+ "http":{
705
+ "method":"POST",
706
+ "requestUri":"/"
707
+ },
708
+ "input":{"shape":"StartMailboxExportJobRequest"},
709
+ "output":{"shape":"StartMailboxExportJobResponse"},
710
+ "errors":[
711
+ {"shape":"InvalidParameterException"},
712
+ {"shape":"OrganizationNotFoundException"},
713
+ {"shape":"OrganizationStateException"},
714
+ {"shape":"EntityNotFoundException"},
715
+ {"shape":"LimitExceededException"}
716
+ ],
717
+ "idempotent":true
718
+ },
655
719
  "TagResource":{
656
720
  "name":"TagResource",
657
721
  "http":{
@@ -856,6 +920,27 @@
856
920
  }
857
921
  },
858
922
  "Boolean":{"type":"boolean"},
923
+ "CancelMailboxExportJobRequest":{
924
+ "type":"structure",
925
+ "required":[
926
+ "ClientToken",
927
+ "JobId",
928
+ "OrganizationId"
929
+ ],
930
+ "members":{
931
+ "ClientToken":{
932
+ "shape":"IdempotencyClientToken",
933
+ "idempotencyToken":true
934
+ },
935
+ "JobId":{"shape":"MailboxExportJobId"},
936
+ "OrganizationId":{"shape":"OrganizationId"}
937
+ }
938
+ },
939
+ "CancelMailboxExportJobResponse":{
940
+ "type":"structure",
941
+ "members":{
942
+ }
943
+ },
859
944
  "CreateAliasRequest":{
860
945
  "type":"structure",
861
946
  "required":[
@@ -1096,6 +1181,34 @@
1096
1181
  "DisabledDate":{"shape":"Timestamp"}
1097
1182
  }
1098
1183
  },
1184
+ "DescribeMailboxExportJobRequest":{
1185
+ "type":"structure",
1186
+ "required":[
1187
+ "JobId",
1188
+ "OrganizationId"
1189
+ ],
1190
+ "members":{
1191
+ "JobId":{"shape":"MailboxExportJobId"},
1192
+ "OrganizationId":{"shape":"OrganizationId"}
1193
+ }
1194
+ },
1195
+ "DescribeMailboxExportJobResponse":{
1196
+ "type":"structure",
1197
+ "members":{
1198
+ "EntityId":{"shape":"WorkMailIdentifier"},
1199
+ "Description":{"shape":"Description"},
1200
+ "RoleArn":{"shape":"RoleArn"},
1201
+ "KmsKeyArn":{"shape":"KmsKeyArn"},
1202
+ "S3BucketName":{"shape":"S3BucketName"},
1203
+ "S3Prefix":{"shape":"S3ObjectKey"},
1204
+ "S3Path":{"shape":"S3ObjectKey"},
1205
+ "EstimatedProgress":{"shape":"Percentage"},
1206
+ "State":{"shape":"MailboxExportJobState"},
1207
+ "ErrorInfo":{"shape":"MailboxExportErrorInfo"},
1208
+ "StartTime":{"shape":"Timestamp"},
1209
+ "EndTime":{"shape":"Timestamp"}
1210
+ }
1211
+ },
1099
1212
  "DescribeOrganizationRequest":{
1100
1213
  "type":"structure",
1101
1214
  "required":["OrganizationId"],
@@ -1165,6 +1278,12 @@
1165
1278
  "DisabledDate":{"shape":"Timestamp"}
1166
1279
  }
1167
1280
  },
1281
+ "Description":{
1282
+ "type":"string",
1283
+ "max":1023,
1284
+ "min":0,
1285
+ "pattern":"[\\S\\s]*"
1286
+ },
1168
1287
  "DirectoryServiceAuthenticationFailedException":{
1169
1288
  "type":"structure",
1170
1289
  "members":{
@@ -1360,6 +1479,12 @@
1360
1479
  "type":"list",
1361
1480
  "member":{"shape":"Group"}
1362
1481
  },
1482
+ "IdempotencyClientToken":{
1483
+ "type":"string",
1484
+ "max":128,
1485
+ "min":1,
1486
+ "pattern":"[\\x21-\\x7e]+"
1487
+ },
1363
1488
  "InvalidConfigurationException":{
1364
1489
  "type":"structure",
1365
1490
  "members":{
@@ -1399,6 +1524,16 @@
1399
1524
  "max":10,
1400
1525
  "min":0
1401
1526
  },
1527
+ "Jobs":{
1528
+ "type":"list",
1529
+ "member":{"shape":"MailboxExportJob"}
1530
+ },
1531
+ "KmsKeyArn":{
1532
+ "type":"string",
1533
+ "max":2048,
1534
+ "min":20,
1535
+ "pattern":"arn:aws:kms:[a-z0-9-]*:[a-z0-9-]+:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}"
1536
+ },
1402
1537
  "LimitExceededException":{
1403
1538
  "type":"structure",
1404
1539
  "members":{
@@ -1475,6 +1610,22 @@
1475
1610
  "NextToken":{"shape":"NextToken"}
1476
1611
  }
1477
1612
  },
1613
+ "ListMailboxExportJobsRequest":{
1614
+ "type":"structure",
1615
+ "required":["OrganizationId"],
1616
+ "members":{
1617
+ "OrganizationId":{"shape":"OrganizationId"},
1618
+ "NextToken":{"shape":"NextToken"},
1619
+ "MaxResults":{"shape":"MaxResults"}
1620
+ }
1621
+ },
1622
+ "ListMailboxExportJobsResponse":{
1623
+ "type":"structure",
1624
+ "members":{
1625
+ "Jobs":{"shape":"Jobs"},
1626
+ "NextToken":{"shape":"NextToken"}
1627
+ }
1628
+ },
1478
1629
  "ListMailboxPermissionsRequest":{
1479
1630
  "type":"structure",
1480
1631
  "required":[
@@ -1588,6 +1739,41 @@
1588
1739
  },
1589
1740
  "exception":true
1590
1741
  },
1742
+ "MailboxExportErrorInfo":{
1743
+ "type":"string",
1744
+ "max":1024,
1745
+ "min":1,
1746
+ "pattern":"[\\S\\s]*"
1747
+ },
1748
+ "MailboxExportJob":{
1749
+ "type":"structure",
1750
+ "members":{
1751
+ "JobId":{"shape":"MailboxExportJobId"},
1752
+ "EntityId":{"shape":"WorkMailIdentifier"},
1753
+ "Description":{"shape":"Description"},
1754
+ "S3BucketName":{"shape":"S3BucketName"},
1755
+ "S3Path":{"shape":"S3ObjectKey"},
1756
+ "EstimatedProgress":{"shape":"Percentage"},
1757
+ "State":{"shape":"MailboxExportJobState"},
1758
+ "StartTime":{"shape":"Timestamp"},
1759
+ "EndTime":{"shape":"Timestamp"}
1760
+ }
1761
+ },
1762
+ "MailboxExportJobId":{
1763
+ "type":"string",
1764
+ "max":63,
1765
+ "min":1,
1766
+ "pattern":"[A-Za-z0-9-]+"
1767
+ },
1768
+ "MailboxExportJobState":{
1769
+ "type":"string",
1770
+ "enum":[
1771
+ "RUNNING",
1772
+ "COMPLETED",
1773
+ "FAILED",
1774
+ "CANCELLED"
1775
+ ]
1776
+ },
1591
1777
  "MailboxQuota":{
1592
1778
  "type":"integer",
1593
1779
  "box":true,
@@ -1680,6 +1866,11 @@
1680
1866
  "pattern":"[\\u0020-\\u00FF]+",
1681
1867
  "sensitive":true
1682
1868
  },
1869
+ "Percentage":{
1870
+ "type":"integer",
1871
+ "max":100,
1872
+ "min":0
1873
+ },
1683
1874
  "Permission":{
1684
1875
  "type":"structure",
1685
1876
  "required":[
@@ -1712,7 +1903,8 @@
1712
1903
  "PolicyDescription":{
1713
1904
  "type":"string",
1714
1905
  "max":256,
1715
- "pattern":"[\\w\\d\\s\\S\\-!?=,.;:'_]+"
1906
+ "pattern":"[\\w\\d\\s\\S\\-!?=,.;:'_]+",
1907
+ "sensitive":true
1716
1908
  },
1717
1909
  "PutAccessControlRuleRequest":{
1718
1910
  "type":"structure",
@@ -1881,12 +2073,60 @@
1881
2073
  "max":730,
1882
2074
  "min":1
1883
2075
  },
2076
+ "RoleArn":{
2077
+ "type":"string",
2078
+ "max":2048,
2079
+ "min":20
2080
+ },
2081
+ "S3BucketName":{
2082
+ "type":"string",
2083
+ "max":63,
2084
+ "min":1,
2085
+ "pattern":"[A-Za-z0-9.-]+"
2086
+ },
2087
+ "S3ObjectKey":{
2088
+ "type":"string",
2089
+ "max":1023,
2090
+ "min":1,
2091
+ "pattern":"[A-Za-z0-9!_.*'()/-]+"
2092
+ },
1884
2093
  "ShortString":{
1885
2094
  "type":"string",
1886
2095
  "max":64,
1887
2096
  "min":1,
1888
2097
  "pattern":"[a-zA-Z0-9_-]+"
1889
2098
  },
2099
+ "StartMailboxExportJobRequest":{
2100
+ "type":"structure",
2101
+ "required":[
2102
+ "ClientToken",
2103
+ "OrganizationId",
2104
+ "EntityId",
2105
+ "RoleArn",
2106
+ "KmsKeyArn",
2107
+ "S3BucketName",
2108
+ "S3Prefix"
2109
+ ],
2110
+ "members":{
2111
+ "ClientToken":{
2112
+ "shape":"IdempotencyClientToken",
2113
+ "idempotencyToken":true
2114
+ },
2115
+ "OrganizationId":{"shape":"OrganizationId"},
2116
+ "EntityId":{"shape":"WorkMailIdentifier"},
2117
+ "Description":{"shape":"Description"},
2118
+ "RoleArn":{"shape":"RoleArn"},
2119
+ "KmsKeyArn":{"shape":"KmsKeyArn"},
2120
+ "S3BucketName":{"shape":"S3BucketName"},
2121
+ "S3Prefix":{"shape":"S3ObjectKey"}
2122
+ }
2123
+ },
2124
+ "StartMailboxExportJobResponse":{
2125
+ "type":"structure",
2126
+ "members":{
2127
+ "JobId":{"shape":"MailboxExportJobId"}
2128
+ }
2129
+ },
1890
2130
  "String":{
1891
2131
  "type":"string",
1892
2132
  "max":256
@@ -15,6 +15,11 @@
15
15
  "output_token": "NextToken",
16
16
  "limit_key": "MaxResults"
17
17
  },
18
+ "ListMailboxExportJobs": {
19
+ "input_token": "NextToken",
20
+ "output_token": "NextToken",
21
+ "limit_key": "MaxResults"
22
+ },
18
23
  "ListMailboxPermissions": {
19
24
  "input_token": "NextToken",
20
25
  "output_token": "NextToken",
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.590'
2
+ VERSION = '2.11.591'
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.590
4
+ version: 2.11.591
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-09-21 00:00:00.000000000 Z
11
+ date: 2020-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath