aws-sdk-comprehend 1.29.0 → 1.34.0
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 +5 -5
- data/lib/aws-sdk-comprehend.rb +9 -4
- data/lib/aws-sdk-comprehend/client.rb +88 -14
- data/lib/aws-sdk-comprehend/client_api.rb +2 -0
- data/lib/aws-sdk-comprehend/errors.rb +40 -16
- data/lib/aws-sdk-comprehend/resource.rb +3 -0
- data/lib/aws-sdk-comprehend/types.rb +161 -0
- metadata +5 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Comprehend
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -25,6 +27,7 @@ module Aws::Comprehend
|
|
25
27
|
class BatchDetectDominantLanguageItemResult < Struct.new(
|
26
28
|
:index,
|
27
29
|
:languages)
|
30
|
+
SENSITIVE = []
|
28
31
|
include Aws::Structure
|
29
32
|
end
|
30
33
|
|
@@ -46,6 +49,7 @@ module Aws::Comprehend
|
|
46
49
|
#
|
47
50
|
class BatchDetectDominantLanguageRequest < Struct.new(
|
48
51
|
:text_list)
|
52
|
+
SENSITIVE = []
|
49
53
|
include Aws::Structure
|
50
54
|
end
|
51
55
|
|
@@ -68,6 +72,7 @@ module Aws::Comprehend
|
|
68
72
|
class BatchDetectDominantLanguageResponse < Struct.new(
|
69
73
|
:result_list,
|
70
74
|
:error_list)
|
75
|
+
SENSITIVE = []
|
71
76
|
include Aws::Structure
|
72
77
|
end
|
73
78
|
|
@@ -88,6 +93,7 @@ module Aws::Comprehend
|
|
88
93
|
class BatchDetectEntitiesItemResult < Struct.new(
|
89
94
|
:index,
|
90
95
|
:entities)
|
96
|
+
SENSITIVE = []
|
91
97
|
include Aws::Structure
|
92
98
|
end
|
93
99
|
|
@@ -116,6 +122,7 @@ module Aws::Comprehend
|
|
116
122
|
class BatchDetectEntitiesRequest < Struct.new(
|
117
123
|
:text_list,
|
118
124
|
:language_code)
|
125
|
+
SENSITIVE = []
|
119
126
|
include Aws::Structure
|
120
127
|
end
|
121
128
|
|
@@ -138,6 +145,7 @@ module Aws::Comprehend
|
|
138
145
|
class BatchDetectEntitiesResponse < Struct.new(
|
139
146
|
:result_list,
|
140
147
|
:error_list)
|
148
|
+
SENSITIVE = []
|
141
149
|
include Aws::Structure
|
142
150
|
end
|
143
151
|
|
@@ -158,6 +166,7 @@ module Aws::Comprehend
|
|
158
166
|
class BatchDetectKeyPhrasesItemResult < Struct.new(
|
159
167
|
:index,
|
160
168
|
:key_phrases)
|
169
|
+
SENSITIVE = []
|
161
170
|
include Aws::Structure
|
162
171
|
end
|
163
172
|
|
@@ -186,6 +195,7 @@ module Aws::Comprehend
|
|
186
195
|
class BatchDetectKeyPhrasesRequest < Struct.new(
|
187
196
|
:text_list,
|
188
197
|
:language_code)
|
198
|
+
SENSITIVE = []
|
189
199
|
include Aws::Structure
|
190
200
|
end
|
191
201
|
|
@@ -208,6 +218,7 @@ module Aws::Comprehend
|
|
208
218
|
class BatchDetectKeyPhrasesResponse < Struct.new(
|
209
219
|
:result_list,
|
210
220
|
:error_list)
|
221
|
+
SENSITIVE = []
|
211
222
|
include Aws::Structure
|
212
223
|
end
|
213
224
|
|
@@ -233,6 +244,7 @@ module Aws::Comprehend
|
|
233
244
|
:index,
|
234
245
|
:sentiment,
|
235
246
|
:sentiment_score)
|
247
|
+
SENSITIVE = []
|
236
248
|
include Aws::Structure
|
237
249
|
end
|
238
250
|
|
@@ -261,6 +273,7 @@ module Aws::Comprehend
|
|
261
273
|
class BatchDetectSentimentRequest < Struct.new(
|
262
274
|
:text_list,
|
263
275
|
:language_code)
|
276
|
+
SENSITIVE = []
|
264
277
|
include Aws::Structure
|
265
278
|
end
|
266
279
|
|
@@ -283,6 +296,7 @@ module Aws::Comprehend
|
|
283
296
|
class BatchDetectSentimentResponse < Struct.new(
|
284
297
|
:result_list,
|
285
298
|
:error_list)
|
299
|
+
SENSITIVE = []
|
286
300
|
include Aws::Structure
|
287
301
|
end
|
288
302
|
|
@@ -303,6 +317,7 @@ module Aws::Comprehend
|
|
303
317
|
class BatchDetectSyntaxItemResult < Struct.new(
|
304
318
|
:index,
|
305
319
|
:syntax_tokens)
|
320
|
+
SENSITIVE = []
|
306
321
|
include Aws::Structure
|
307
322
|
end
|
308
323
|
|
@@ -333,6 +348,7 @@ module Aws::Comprehend
|
|
333
348
|
class BatchDetectSyntaxRequest < Struct.new(
|
334
349
|
:text_list,
|
335
350
|
:language_code)
|
351
|
+
SENSITIVE = []
|
336
352
|
include Aws::Structure
|
337
353
|
end
|
338
354
|
|
@@ -355,6 +371,7 @@ module Aws::Comprehend
|
|
355
371
|
class BatchDetectSyntaxResponse < Struct.new(
|
356
372
|
:result_list,
|
357
373
|
:error_list)
|
374
|
+
SENSITIVE = []
|
358
375
|
include Aws::Structure
|
359
376
|
end
|
360
377
|
|
@@ -380,6 +397,7 @@ module Aws::Comprehend
|
|
380
397
|
:index,
|
381
398
|
:error_code,
|
382
399
|
:error_message)
|
400
|
+
SENSITIVE = []
|
383
401
|
include Aws::Structure
|
384
402
|
end
|
385
403
|
|
@@ -393,6 +411,7 @@ module Aws::Comprehend
|
|
393
411
|
#
|
394
412
|
class BatchSizeLimitExceededException < Struct.new(
|
395
413
|
:message)
|
414
|
+
SENSITIVE = []
|
396
415
|
include Aws::Structure
|
397
416
|
end
|
398
417
|
|
@@ -469,6 +488,7 @@ module Aws::Comprehend
|
|
469
488
|
:micro_recall,
|
470
489
|
:micro_f1_score,
|
471
490
|
:hamming_loss)
|
491
|
+
SENSITIVE = []
|
472
492
|
include Aws::Structure
|
473
493
|
end
|
474
494
|
|
@@ -502,6 +522,7 @@ module Aws::Comprehend
|
|
502
522
|
:number_of_trained_documents,
|
503
523
|
:number_of_test_documents,
|
504
524
|
:evaluation_metrics)
|
525
|
+
SENSITIVE = []
|
505
526
|
include Aws::Structure
|
506
527
|
end
|
507
528
|
|
@@ -526,6 +547,7 @@ module Aws::Comprehend
|
|
526
547
|
class ClassifyDocumentRequest < Struct.new(
|
527
548
|
:text,
|
528
549
|
:endpoint_arn)
|
550
|
+
SENSITIVE = []
|
529
551
|
include Aws::Structure
|
530
552
|
end
|
531
553
|
|
@@ -551,6 +573,7 @@ module Aws::Comprehend
|
|
551
573
|
class ClassifyDocumentResponse < Struct.new(
|
552
574
|
:classes,
|
553
575
|
:labels)
|
576
|
+
SENSITIVE = []
|
554
577
|
include Aws::Structure
|
555
578
|
end
|
556
579
|
|
@@ -564,6 +587,7 @@ module Aws::Comprehend
|
|
564
587
|
#
|
565
588
|
class ConcurrentModificationException < Struct.new(
|
566
589
|
:message)
|
590
|
+
SENSITIVE = []
|
567
591
|
include Aws::Structure
|
568
592
|
end
|
569
593
|
|
@@ -684,6 +708,7 @@ module Aws::Comprehend
|
|
684
708
|
:volume_kms_key_id,
|
685
709
|
:vpc_config,
|
686
710
|
:mode)
|
711
|
+
SENSITIVE = []
|
687
712
|
include Aws::Structure
|
688
713
|
end
|
689
714
|
|
@@ -696,6 +721,7 @@ module Aws::Comprehend
|
|
696
721
|
#
|
697
722
|
class CreateDocumentClassifierResponse < Struct.new(
|
698
723
|
:document_classifier_arn)
|
724
|
+
SENSITIVE = []
|
699
725
|
include Aws::Structure
|
700
726
|
end
|
701
727
|
|
@@ -755,6 +781,7 @@ module Aws::Comprehend
|
|
755
781
|
:desired_inference_units,
|
756
782
|
:client_request_token,
|
757
783
|
:tags)
|
784
|
+
SENSITIVE = []
|
758
785
|
include Aws::Structure
|
759
786
|
end
|
760
787
|
|
@@ -766,6 +793,7 @@ module Aws::Comprehend
|
|
766
793
|
#
|
767
794
|
class CreateEndpointResponse < Struct.new(
|
768
795
|
:endpoint_arn)
|
796
|
+
SENSITIVE = []
|
769
797
|
include Aws::Structure
|
770
798
|
end
|
771
799
|
|
@@ -879,6 +907,7 @@ module Aws::Comprehend
|
|
879
907
|
:language_code,
|
880
908
|
:volume_kms_key_id,
|
881
909
|
:vpc_config)
|
910
|
+
SENSITIVE = []
|
882
911
|
include Aws::Structure
|
883
912
|
end
|
884
913
|
|
@@ -891,6 +920,7 @@ module Aws::Comprehend
|
|
891
920
|
#
|
892
921
|
class CreateEntityRecognizerResponse < Struct.new(
|
893
922
|
:entity_recognizer_arn)
|
923
|
+
SENSITIVE = []
|
894
924
|
include Aws::Structure
|
895
925
|
end
|
896
926
|
|
@@ -910,6 +940,7 @@ module Aws::Comprehend
|
|
910
940
|
#
|
911
941
|
class DeleteDocumentClassifierRequest < Struct.new(
|
912
942
|
:document_classifier_arn)
|
943
|
+
SENSITIVE = []
|
913
944
|
include Aws::Structure
|
914
945
|
end
|
915
946
|
|
@@ -932,6 +963,7 @@ module Aws::Comprehend
|
|
932
963
|
#
|
933
964
|
class DeleteEndpointRequest < Struct.new(
|
934
965
|
:endpoint_arn)
|
966
|
+
SENSITIVE = []
|
935
967
|
include Aws::Structure
|
936
968
|
end
|
937
969
|
|
@@ -955,6 +987,7 @@ module Aws::Comprehend
|
|
955
987
|
#
|
956
988
|
class DeleteEntityRecognizerRequest < Struct.new(
|
957
989
|
:entity_recognizer_arn)
|
990
|
+
SENSITIVE = []
|
958
991
|
include Aws::Structure
|
959
992
|
end
|
960
993
|
|
@@ -978,6 +1011,7 @@ module Aws::Comprehend
|
|
978
1011
|
#
|
979
1012
|
class DescribeDocumentClassificationJobRequest < Struct.new(
|
980
1013
|
:job_id)
|
1014
|
+
SENSITIVE = []
|
981
1015
|
include Aws::Structure
|
982
1016
|
end
|
983
1017
|
|
@@ -990,6 +1024,7 @@ module Aws::Comprehend
|
|
990
1024
|
#
|
991
1025
|
class DescribeDocumentClassificationJobResponse < Struct.new(
|
992
1026
|
:document_classification_job_properties)
|
1027
|
+
SENSITIVE = []
|
993
1028
|
include Aws::Structure
|
994
1029
|
end
|
995
1030
|
|
@@ -1009,6 +1044,7 @@ module Aws::Comprehend
|
|
1009
1044
|
#
|
1010
1045
|
class DescribeDocumentClassifierRequest < Struct.new(
|
1011
1046
|
:document_classifier_arn)
|
1047
|
+
SENSITIVE = []
|
1012
1048
|
include Aws::Structure
|
1013
1049
|
end
|
1014
1050
|
|
@@ -1021,6 +1057,7 @@ module Aws::Comprehend
|
|
1021
1057
|
#
|
1022
1058
|
class DescribeDocumentClassifierResponse < Struct.new(
|
1023
1059
|
:document_classifier_properties)
|
1060
|
+
SENSITIVE = []
|
1024
1061
|
include Aws::Structure
|
1025
1062
|
end
|
1026
1063
|
|
@@ -1040,6 +1077,7 @@ module Aws::Comprehend
|
|
1040
1077
|
#
|
1041
1078
|
class DescribeDominantLanguageDetectionJobRequest < Struct.new(
|
1042
1079
|
:job_id)
|
1080
|
+
SENSITIVE = []
|
1043
1081
|
include Aws::Structure
|
1044
1082
|
end
|
1045
1083
|
|
@@ -1052,6 +1090,7 @@ module Aws::Comprehend
|
|
1052
1090
|
#
|
1053
1091
|
class DescribeDominantLanguageDetectionJobResponse < Struct.new(
|
1054
1092
|
:dominant_language_detection_job_properties)
|
1093
|
+
SENSITIVE = []
|
1055
1094
|
include Aws::Structure
|
1056
1095
|
end
|
1057
1096
|
|
@@ -1070,6 +1109,7 @@ module Aws::Comprehend
|
|
1070
1109
|
#
|
1071
1110
|
class DescribeEndpointRequest < Struct.new(
|
1072
1111
|
:endpoint_arn)
|
1112
|
+
SENSITIVE = []
|
1073
1113
|
include Aws::Structure
|
1074
1114
|
end
|
1075
1115
|
|
@@ -1081,6 +1121,7 @@ module Aws::Comprehend
|
|
1081
1121
|
#
|
1082
1122
|
class DescribeEndpointResponse < Struct.new(
|
1083
1123
|
:endpoint_properties)
|
1124
|
+
SENSITIVE = []
|
1084
1125
|
include Aws::Structure
|
1085
1126
|
end
|
1086
1127
|
|
@@ -1100,6 +1141,7 @@ module Aws::Comprehend
|
|
1100
1141
|
#
|
1101
1142
|
class DescribeEntitiesDetectionJobRequest < Struct.new(
|
1102
1143
|
:job_id)
|
1144
|
+
SENSITIVE = []
|
1103
1145
|
include Aws::Structure
|
1104
1146
|
end
|
1105
1147
|
|
@@ -1112,6 +1154,7 @@ module Aws::Comprehend
|
|
1112
1154
|
#
|
1113
1155
|
class DescribeEntitiesDetectionJobResponse < Struct.new(
|
1114
1156
|
:entities_detection_job_properties)
|
1157
|
+
SENSITIVE = []
|
1115
1158
|
include Aws::Structure
|
1116
1159
|
end
|
1117
1160
|
|
@@ -1131,6 +1174,7 @@ module Aws::Comprehend
|
|
1131
1174
|
#
|
1132
1175
|
class DescribeEntityRecognizerRequest < Struct.new(
|
1133
1176
|
:entity_recognizer_arn)
|
1177
|
+
SENSITIVE = []
|
1134
1178
|
include Aws::Structure
|
1135
1179
|
end
|
1136
1180
|
|
@@ -1142,6 +1186,7 @@ module Aws::Comprehend
|
|
1142
1186
|
#
|
1143
1187
|
class DescribeEntityRecognizerResponse < Struct.new(
|
1144
1188
|
:entity_recognizer_properties)
|
1189
|
+
SENSITIVE = []
|
1145
1190
|
include Aws::Structure
|
1146
1191
|
end
|
1147
1192
|
|
@@ -1161,6 +1206,7 @@ module Aws::Comprehend
|
|
1161
1206
|
#
|
1162
1207
|
class DescribeKeyPhrasesDetectionJobRequest < Struct.new(
|
1163
1208
|
:job_id)
|
1209
|
+
SENSITIVE = []
|
1164
1210
|
include Aws::Structure
|
1165
1211
|
end
|
1166
1212
|
|
@@ -1173,6 +1219,7 @@ module Aws::Comprehend
|
|
1173
1219
|
#
|
1174
1220
|
class DescribeKeyPhrasesDetectionJobResponse < Struct.new(
|
1175
1221
|
:key_phrases_detection_job_properties)
|
1222
|
+
SENSITIVE = []
|
1176
1223
|
include Aws::Structure
|
1177
1224
|
end
|
1178
1225
|
|
@@ -1192,6 +1239,7 @@ module Aws::Comprehend
|
|
1192
1239
|
#
|
1193
1240
|
class DescribeSentimentDetectionJobRequest < Struct.new(
|
1194
1241
|
:job_id)
|
1242
|
+
SENSITIVE = []
|
1195
1243
|
include Aws::Structure
|
1196
1244
|
end
|
1197
1245
|
|
@@ -1204,6 +1252,7 @@ module Aws::Comprehend
|
|
1204
1252
|
#
|
1205
1253
|
class DescribeSentimentDetectionJobResponse < Struct.new(
|
1206
1254
|
:sentiment_detection_job_properties)
|
1255
|
+
SENSITIVE = []
|
1207
1256
|
include Aws::Structure
|
1208
1257
|
end
|
1209
1258
|
|
@@ -1222,6 +1271,7 @@ module Aws::Comprehend
|
|
1222
1271
|
#
|
1223
1272
|
class DescribeTopicsDetectionJobRequest < Struct.new(
|
1224
1273
|
:job_id)
|
1274
|
+
SENSITIVE = []
|
1225
1275
|
include Aws::Structure
|
1226
1276
|
end
|
1227
1277
|
|
@@ -1233,6 +1283,7 @@ module Aws::Comprehend
|
|
1233
1283
|
#
|
1234
1284
|
class DescribeTopicsDetectionJobResponse < Struct.new(
|
1235
1285
|
:topics_detection_job_properties)
|
1286
|
+
SENSITIVE = []
|
1236
1287
|
include Aws::Structure
|
1237
1288
|
end
|
1238
1289
|
|
@@ -1253,6 +1304,7 @@ module Aws::Comprehend
|
|
1253
1304
|
#
|
1254
1305
|
class DetectDominantLanguageRequest < Struct.new(
|
1255
1306
|
:text)
|
1307
|
+
SENSITIVE = []
|
1256
1308
|
include Aws::Structure
|
1257
1309
|
end
|
1258
1310
|
|
@@ -1272,6 +1324,7 @@ module Aws::Comprehend
|
|
1272
1324
|
#
|
1273
1325
|
class DetectDominantLanguageResponse < Struct.new(
|
1274
1326
|
:languages)
|
1327
|
+
SENSITIVE = []
|
1275
1328
|
include Aws::Structure
|
1276
1329
|
end
|
1277
1330
|
|
@@ -1299,6 +1352,7 @@ module Aws::Comprehend
|
|
1299
1352
|
class DetectEntitiesRequest < Struct.new(
|
1300
1353
|
:text,
|
1301
1354
|
:language_code)
|
1355
|
+
SENSITIVE = []
|
1302
1356
|
include Aws::Structure
|
1303
1357
|
end
|
1304
1358
|
|
@@ -1314,6 +1368,7 @@ module Aws::Comprehend
|
|
1314
1368
|
#
|
1315
1369
|
class DetectEntitiesResponse < Struct.new(
|
1316
1370
|
:entities)
|
1371
|
+
SENSITIVE = []
|
1317
1372
|
include Aws::Structure
|
1318
1373
|
end
|
1319
1374
|
|
@@ -1341,6 +1396,7 @@ module Aws::Comprehend
|
|
1341
1396
|
class DetectKeyPhrasesRequest < Struct.new(
|
1342
1397
|
:text,
|
1343
1398
|
:language_code)
|
1399
|
+
SENSITIVE = []
|
1344
1400
|
include Aws::Structure
|
1345
1401
|
end
|
1346
1402
|
|
@@ -1356,6 +1412,7 @@ module Aws::Comprehend
|
|
1356
1412
|
#
|
1357
1413
|
class DetectKeyPhrasesResponse < Struct.new(
|
1358
1414
|
:key_phrases)
|
1415
|
+
SENSITIVE = []
|
1359
1416
|
include Aws::Structure
|
1360
1417
|
end
|
1361
1418
|
|
@@ -1383,6 +1440,7 @@ module Aws::Comprehend
|
|
1383
1440
|
class DetectSentimentRequest < Struct.new(
|
1384
1441
|
:text,
|
1385
1442
|
:language_code)
|
1443
|
+
SENSITIVE = []
|
1386
1444
|
include Aws::Structure
|
1387
1445
|
end
|
1388
1446
|
|
@@ -1401,6 +1459,7 @@ module Aws::Comprehend
|
|
1401
1459
|
class DetectSentimentResponse < Struct.new(
|
1402
1460
|
:sentiment,
|
1403
1461
|
:sentiment_score)
|
1462
|
+
SENSITIVE = []
|
1404
1463
|
include Aws::Structure
|
1405
1464
|
end
|
1406
1465
|
|
@@ -1429,6 +1488,7 @@ module Aws::Comprehend
|
|
1429
1488
|
class DetectSyntaxRequest < Struct.new(
|
1430
1489
|
:text,
|
1431
1490
|
:language_code)
|
1491
|
+
SENSITIVE = []
|
1432
1492
|
include Aws::Structure
|
1433
1493
|
end
|
1434
1494
|
|
@@ -1444,6 +1504,7 @@ module Aws::Comprehend
|
|
1444
1504
|
#
|
1445
1505
|
class DetectSyntaxResponse < Struct.new(
|
1446
1506
|
:syntax_tokens)
|
1507
|
+
SENSITIVE = []
|
1447
1508
|
include Aws::Structure
|
1448
1509
|
end
|
1449
1510
|
|
@@ -1463,6 +1524,7 @@ module Aws::Comprehend
|
|
1463
1524
|
class DocumentClass < Struct.new(
|
1464
1525
|
:name,
|
1465
1526
|
:score)
|
1527
|
+
SENSITIVE = []
|
1466
1528
|
include Aws::Structure
|
1467
1529
|
end
|
1468
1530
|
|
@@ -1510,6 +1572,7 @@ module Aws::Comprehend
|
|
1510
1572
|
:job_status,
|
1511
1573
|
:submit_time_before,
|
1512
1574
|
:submit_time_after)
|
1575
|
+
SENSITIVE = []
|
1513
1576
|
include Aws::Structure
|
1514
1577
|
end
|
1515
1578
|
|
@@ -1599,6 +1662,7 @@ module Aws::Comprehend
|
|
1599
1662
|
:data_access_role_arn,
|
1600
1663
|
:volume_kms_key_id,
|
1601
1664
|
:vpc_config)
|
1665
|
+
SENSITIVE = []
|
1602
1666
|
include Aws::Structure
|
1603
1667
|
end
|
1604
1668
|
|
@@ -1639,6 +1703,7 @@ module Aws::Comprehend
|
|
1639
1703
|
:status,
|
1640
1704
|
:submit_time_before,
|
1641
1705
|
:submit_time_after)
|
1706
|
+
SENSITIVE = []
|
1642
1707
|
include Aws::Structure
|
1643
1708
|
end
|
1644
1709
|
|
@@ -1682,6 +1747,7 @@ module Aws::Comprehend
|
|
1682
1747
|
class DocumentClassifierInputDataConfig < Struct.new(
|
1683
1748
|
:s3_uri,
|
1684
1749
|
:label_delimiter)
|
1750
|
+
SENSITIVE = []
|
1685
1751
|
include Aws::Structure
|
1686
1752
|
end
|
1687
1753
|
|
@@ -1730,6 +1796,7 @@ module Aws::Comprehend
|
|
1730
1796
|
class DocumentClassifierOutputDataConfig < Struct.new(
|
1731
1797
|
:s3_uri,
|
1732
1798
|
:kms_key_id)
|
1799
|
+
SENSITIVE = []
|
1733
1800
|
include Aws::Structure
|
1734
1801
|
end
|
1735
1802
|
|
@@ -1846,6 +1913,7 @@ module Aws::Comprehend
|
|
1846
1913
|
:volume_kms_key_id,
|
1847
1914
|
:vpc_config,
|
1848
1915
|
:mode)
|
1916
|
+
SENSITIVE = []
|
1849
1917
|
include Aws::Structure
|
1850
1918
|
end
|
1851
1919
|
|
@@ -1866,6 +1934,7 @@ module Aws::Comprehend
|
|
1866
1934
|
class DocumentLabel < Struct.new(
|
1867
1935
|
:name,
|
1868
1936
|
:score)
|
1937
|
+
SENSITIVE = []
|
1869
1938
|
include Aws::Structure
|
1870
1939
|
end
|
1871
1940
|
|
@@ -1893,6 +1962,7 @@ module Aws::Comprehend
|
|
1893
1962
|
class DominantLanguage < Struct.new(
|
1894
1963
|
:language_code,
|
1895
1964
|
:score)
|
1965
|
+
SENSITIVE = []
|
1896
1966
|
include Aws::Structure
|
1897
1967
|
end
|
1898
1968
|
|
@@ -1939,6 +2009,7 @@ module Aws::Comprehend
|
|
1939
2009
|
:job_status,
|
1940
2010
|
:submit_time_before,
|
1941
2011
|
:submit_time_after)
|
2012
|
+
SENSITIVE = []
|
1942
2013
|
include Aws::Structure
|
1943
2014
|
end
|
1944
2015
|
|
@@ -2022,6 +2093,7 @@ module Aws::Comprehend
|
|
2022
2093
|
:data_access_role_arn,
|
2023
2094
|
:volume_kms_key_id,
|
2024
2095
|
:vpc_config)
|
2096
|
+
SENSITIVE = []
|
2025
2097
|
include Aws::Structure
|
2026
2098
|
end
|
2027
2099
|
|
@@ -2066,6 +2138,7 @@ module Aws::Comprehend
|
|
2066
2138
|
:status,
|
2067
2139
|
:creation_time_before,
|
2068
2140
|
:creation_time_after)
|
2141
|
+
SENSITIVE = []
|
2069
2142
|
include Aws::Structure
|
2070
2143
|
end
|
2071
2144
|
|
@@ -2120,6 +2193,7 @@ module Aws::Comprehend
|
|
2120
2193
|
:current_inference_units,
|
2121
2194
|
:creation_time,
|
2122
2195
|
:last_modified_time)
|
2196
|
+
SENSITIVE = []
|
2123
2197
|
include Aws::Structure
|
2124
2198
|
end
|
2125
2199
|
|
@@ -2166,6 +2240,7 @@ module Aws::Comprehend
|
|
2166
2240
|
:job_status,
|
2167
2241
|
:submit_time_before,
|
2168
2242
|
:submit_time_after)
|
2243
|
+
SENSITIVE = []
|
2169
2244
|
include Aws::Structure
|
2170
2245
|
end
|
2171
2246
|
|
@@ -2259,6 +2334,7 @@ module Aws::Comprehend
|
|
2259
2334
|
:data_access_role_arn,
|
2260
2335
|
:volume_kms_key_id,
|
2261
2336
|
:vpc_config)
|
2337
|
+
SENSITIVE = []
|
2262
2338
|
include Aws::Structure
|
2263
2339
|
end
|
2264
2340
|
|
@@ -2302,6 +2378,7 @@ module Aws::Comprehend
|
|
2302
2378
|
:text,
|
2303
2379
|
:begin_offset,
|
2304
2380
|
:end_offset)
|
2381
|
+
SENSITIVE = []
|
2305
2382
|
include Aws::Structure
|
2306
2383
|
end
|
2307
2384
|
|
@@ -2324,6 +2401,7 @@ module Aws::Comprehend
|
|
2324
2401
|
#
|
2325
2402
|
class EntityRecognizerAnnotations < Struct.new(
|
2326
2403
|
:s3_uri)
|
2404
|
+
SENSITIVE = []
|
2327
2405
|
include Aws::Structure
|
2328
2406
|
end
|
2329
2407
|
|
@@ -2346,6 +2424,7 @@ module Aws::Comprehend
|
|
2346
2424
|
#
|
2347
2425
|
class EntityRecognizerDocuments < Struct.new(
|
2348
2426
|
:s3_uri)
|
2427
|
+
SENSITIVE = []
|
2349
2428
|
include Aws::Structure
|
2350
2429
|
end
|
2351
2430
|
|
@@ -2368,6 +2447,7 @@ module Aws::Comprehend
|
|
2368
2447
|
#
|
2369
2448
|
class EntityRecognizerEntityList < Struct.new(
|
2370
2449
|
:s3_uri)
|
2450
|
+
SENSITIVE = []
|
2371
2451
|
include Aws::Structure
|
2372
2452
|
end
|
2373
2453
|
|
@@ -2398,6 +2478,7 @@ module Aws::Comprehend
|
|
2398
2478
|
:precision,
|
2399
2479
|
:recall,
|
2400
2480
|
:f1_score)
|
2481
|
+
SENSITIVE = []
|
2401
2482
|
include Aws::Structure
|
2402
2483
|
end
|
2403
2484
|
|
@@ -2438,6 +2519,7 @@ module Aws::Comprehend
|
|
2438
2519
|
:status,
|
2439
2520
|
:submit_time_before,
|
2440
2521
|
:submit_time_after)
|
2522
|
+
SENSITIVE = []
|
2441
2523
|
include Aws::Structure
|
2442
2524
|
end
|
2443
2525
|
|
@@ -2488,6 +2570,7 @@ module Aws::Comprehend
|
|
2488
2570
|
:documents,
|
2489
2571
|
:annotations,
|
2490
2572
|
:entity_list)
|
2573
|
+
SENSITIVE = []
|
2491
2574
|
include Aws::Structure
|
2492
2575
|
end
|
2493
2576
|
|
@@ -2520,6 +2603,7 @@ module Aws::Comprehend
|
|
2520
2603
|
:number_of_test_documents,
|
2521
2604
|
:evaluation_metrics,
|
2522
2605
|
:entity_types)
|
2606
|
+
SENSITIVE = []
|
2523
2607
|
include Aws::Structure
|
2524
2608
|
end
|
2525
2609
|
|
@@ -2547,6 +2631,7 @@ module Aws::Comprehend
|
|
2547
2631
|
:type,
|
2548
2632
|
:evaluation_metrics,
|
2549
2633
|
:number_of_train_mentions)
|
2634
|
+
SENSITIVE = []
|
2550
2635
|
include Aws::Structure
|
2551
2636
|
end
|
2552
2637
|
|
@@ -2638,6 +2723,7 @@ module Aws::Comprehend
|
|
2638
2723
|
:data_access_role_arn,
|
2639
2724
|
:volume_kms_key_id,
|
2640
2725
|
:vpc_config)
|
2726
|
+
SENSITIVE = []
|
2641
2727
|
include Aws::Structure
|
2642
2728
|
end
|
2643
2729
|
|
@@ -2671,6 +2757,7 @@ module Aws::Comprehend
|
|
2671
2757
|
:precision,
|
2672
2758
|
:recall,
|
2673
2759
|
:f1_score)
|
2760
|
+
SENSITIVE = []
|
2674
2761
|
include Aws::Structure
|
2675
2762
|
end
|
2676
2763
|
|
@@ -2691,6 +2778,7 @@ module Aws::Comprehend
|
|
2691
2778
|
#
|
2692
2779
|
class EntityTypesListItem < Struct.new(
|
2693
2780
|
:type)
|
2781
|
+
SENSITIVE = []
|
2694
2782
|
include Aws::Structure
|
2695
2783
|
end
|
2696
2784
|
|
@@ -2733,6 +2821,7 @@ module Aws::Comprehend
|
|
2733
2821
|
class InputDataConfig < Struct.new(
|
2734
2822
|
:s3_uri,
|
2735
2823
|
:input_format)
|
2824
|
+
SENSITIVE = []
|
2736
2825
|
include Aws::Structure
|
2737
2826
|
end
|
2738
2827
|
|
@@ -2745,6 +2834,7 @@ module Aws::Comprehend
|
|
2745
2834
|
#
|
2746
2835
|
class InternalServerException < Struct.new(
|
2747
2836
|
:message)
|
2837
|
+
SENSITIVE = []
|
2748
2838
|
include Aws::Structure
|
2749
2839
|
end
|
2750
2840
|
|
@@ -2758,6 +2848,7 @@ module Aws::Comprehend
|
|
2758
2848
|
#
|
2759
2849
|
class InvalidFilterException < Struct.new(
|
2760
2850
|
:message)
|
2851
|
+
SENSITIVE = []
|
2761
2852
|
include Aws::Structure
|
2762
2853
|
end
|
2763
2854
|
|
@@ -2770,6 +2861,7 @@ module Aws::Comprehend
|
|
2770
2861
|
#
|
2771
2862
|
class InvalidRequestException < Struct.new(
|
2772
2863
|
:message)
|
2864
|
+
SENSITIVE = []
|
2773
2865
|
include Aws::Structure
|
2774
2866
|
end
|
2775
2867
|
|
@@ -2782,6 +2874,7 @@ module Aws::Comprehend
|
|
2782
2874
|
#
|
2783
2875
|
class JobNotFoundException < Struct.new(
|
2784
2876
|
:message)
|
2877
|
+
SENSITIVE = []
|
2785
2878
|
include Aws::Structure
|
2786
2879
|
end
|
2787
2880
|
|
@@ -2820,6 +2913,7 @@ module Aws::Comprehend
|
|
2820
2913
|
:text,
|
2821
2914
|
:begin_offset,
|
2822
2915
|
:end_offset)
|
2916
|
+
SENSITIVE = []
|
2823
2917
|
include Aws::Structure
|
2824
2918
|
end
|
2825
2919
|
|
@@ -2866,6 +2960,7 @@ module Aws::Comprehend
|
|
2866
2960
|
:job_status,
|
2867
2961
|
:submit_time_before,
|
2868
2962
|
:submit_time_after)
|
2963
|
+
SENSITIVE = []
|
2869
2964
|
include Aws::Structure
|
2870
2965
|
end
|
2871
2966
|
|
@@ -2953,6 +3048,7 @@ module Aws::Comprehend
|
|
2953
3048
|
:data_access_role_arn,
|
2954
3049
|
:volume_kms_key_id,
|
2955
3050
|
:vpc_config)
|
3051
|
+
SENSITIVE = []
|
2956
3052
|
include Aws::Structure
|
2957
3053
|
end
|
2958
3054
|
|
@@ -2966,6 +3062,7 @@ module Aws::Comprehend
|
|
2966
3062
|
#
|
2967
3063
|
class KmsKeyValidationException < Struct.new(
|
2968
3064
|
:message)
|
3065
|
+
SENSITIVE = []
|
2969
3066
|
include Aws::Structure
|
2970
3067
|
end
|
2971
3068
|
|
@@ -3004,6 +3101,7 @@ module Aws::Comprehend
|
|
3004
3101
|
:filter,
|
3005
3102
|
:next_token,
|
3006
3103
|
:max_results)
|
3104
|
+
SENSITIVE = []
|
3007
3105
|
include Aws::Structure
|
3008
3106
|
end
|
3009
3107
|
|
@@ -3020,6 +3118,7 @@ module Aws::Comprehend
|
|
3020
3118
|
class ListDocumentClassificationJobsResponse < Struct.new(
|
3021
3119
|
:document_classification_job_properties_list,
|
3022
3120
|
:next_token)
|
3121
|
+
SENSITIVE = []
|
3023
3122
|
include Aws::Structure
|
3024
3123
|
end
|
3025
3124
|
|
@@ -3057,6 +3156,7 @@ module Aws::Comprehend
|
|
3057
3156
|
:filter,
|
3058
3157
|
:next_token,
|
3059
3158
|
:max_results)
|
3159
|
+
SENSITIVE = []
|
3060
3160
|
include Aws::Structure
|
3061
3161
|
end
|
3062
3162
|
|
@@ -3073,6 +3173,7 @@ module Aws::Comprehend
|
|
3073
3173
|
class ListDocumentClassifiersResponse < Struct.new(
|
3074
3174
|
:document_classifier_properties_list,
|
3075
3175
|
:next_token)
|
3176
|
+
SENSITIVE = []
|
3076
3177
|
include Aws::Structure
|
3077
3178
|
end
|
3078
3179
|
|
@@ -3111,6 +3212,7 @@ module Aws::Comprehend
|
|
3111
3212
|
:filter,
|
3112
3213
|
:next_token,
|
3113
3214
|
:max_results)
|
3215
|
+
SENSITIVE = []
|
3114
3216
|
include Aws::Structure
|
3115
3217
|
end
|
3116
3218
|
|
@@ -3127,6 +3229,7 @@ module Aws::Comprehend
|
|
3127
3229
|
class ListDominantLanguageDetectionJobsResponse < Struct.new(
|
3128
3230
|
:dominant_language_detection_job_properties_list,
|
3129
3231
|
:next_token)
|
3232
|
+
SENSITIVE = []
|
3130
3233
|
include Aws::Structure
|
3131
3234
|
end
|
3132
3235
|
|
@@ -3165,6 +3268,7 @@ module Aws::Comprehend
|
|
3165
3268
|
:filter,
|
3166
3269
|
:next_token,
|
3167
3270
|
:max_results)
|
3271
|
+
SENSITIVE = []
|
3168
3272
|
include Aws::Structure
|
3169
3273
|
end
|
3170
3274
|
|
@@ -3182,6 +3286,7 @@ module Aws::Comprehend
|
|
3182
3286
|
class ListEndpointsResponse < Struct.new(
|
3183
3287
|
:endpoint_properties_list,
|
3184
3288
|
:next_token)
|
3289
|
+
SENSITIVE = []
|
3185
3290
|
include Aws::Structure
|
3186
3291
|
end
|
3187
3292
|
|
@@ -3220,6 +3325,7 @@ module Aws::Comprehend
|
|
3220
3325
|
:filter,
|
3221
3326
|
:next_token,
|
3222
3327
|
:max_results)
|
3328
|
+
SENSITIVE = []
|
3223
3329
|
include Aws::Structure
|
3224
3330
|
end
|
3225
3331
|
|
@@ -3236,6 +3342,7 @@ module Aws::Comprehend
|
|
3236
3342
|
class ListEntitiesDetectionJobsResponse < Struct.new(
|
3237
3343
|
:entities_detection_job_properties_list,
|
3238
3344
|
:next_token)
|
3345
|
+
SENSITIVE = []
|
3239
3346
|
include Aws::Structure
|
3240
3347
|
end
|
3241
3348
|
|
@@ -3273,6 +3380,7 @@ module Aws::Comprehend
|
|
3273
3380
|
:filter,
|
3274
3381
|
:next_token,
|
3275
3382
|
:max_results)
|
3383
|
+
SENSITIVE = []
|
3276
3384
|
include Aws::Structure
|
3277
3385
|
end
|
3278
3386
|
|
@@ -3289,6 +3397,7 @@ module Aws::Comprehend
|
|
3289
3397
|
class ListEntityRecognizersResponse < Struct.new(
|
3290
3398
|
:entity_recognizer_properties_list,
|
3291
3399
|
:next_token)
|
3400
|
+
SENSITIVE = []
|
3292
3401
|
include Aws::Structure
|
3293
3402
|
end
|
3294
3403
|
|
@@ -3327,6 +3436,7 @@ module Aws::Comprehend
|
|
3327
3436
|
:filter,
|
3328
3437
|
:next_token,
|
3329
3438
|
:max_results)
|
3439
|
+
SENSITIVE = []
|
3330
3440
|
include Aws::Structure
|
3331
3441
|
end
|
3332
3442
|
|
@@ -3343,6 +3453,7 @@ module Aws::Comprehend
|
|
3343
3453
|
class ListKeyPhrasesDetectionJobsResponse < Struct.new(
|
3344
3454
|
:key_phrases_detection_job_properties_list,
|
3345
3455
|
:next_token)
|
3456
|
+
SENSITIVE = []
|
3346
3457
|
include Aws::Structure
|
3347
3458
|
end
|
3348
3459
|
|
@@ -3381,6 +3492,7 @@ module Aws::Comprehend
|
|
3381
3492
|
:filter,
|
3382
3493
|
:next_token,
|
3383
3494
|
:max_results)
|
3495
|
+
SENSITIVE = []
|
3384
3496
|
include Aws::Structure
|
3385
3497
|
end
|
3386
3498
|
|
@@ -3397,6 +3509,7 @@ module Aws::Comprehend
|
|
3397
3509
|
class ListSentimentDetectionJobsResponse < Struct.new(
|
3398
3510
|
:sentiment_detection_job_properties_list,
|
3399
3511
|
:next_token)
|
3512
|
+
SENSITIVE = []
|
3400
3513
|
include Aws::Structure
|
3401
3514
|
end
|
3402
3515
|
|
@@ -3416,6 +3529,7 @@ module Aws::Comprehend
|
|
3416
3529
|
#
|
3417
3530
|
class ListTagsForResourceRequest < Struct.new(
|
3418
3531
|
:resource_arn)
|
3532
|
+
SENSITIVE = []
|
3419
3533
|
include Aws::Structure
|
3420
3534
|
end
|
3421
3535
|
|
@@ -3437,6 +3551,7 @@ module Aws::Comprehend
|
|
3437
3551
|
class ListTagsForResourceResponse < Struct.new(
|
3438
3552
|
:resource_arn,
|
3439
3553
|
:tags)
|
3554
|
+
SENSITIVE = []
|
3440
3555
|
include Aws::Structure
|
3441
3556
|
end
|
3442
3557
|
|
@@ -3475,6 +3590,7 @@ module Aws::Comprehend
|
|
3475
3590
|
:filter,
|
3476
3591
|
:next_token,
|
3477
3592
|
:max_results)
|
3593
|
+
SENSITIVE = []
|
3478
3594
|
include Aws::Structure
|
3479
3595
|
end
|
3480
3596
|
|
@@ -3491,6 +3607,7 @@ module Aws::Comprehend
|
|
3491
3607
|
class ListTopicsDetectionJobsResponse < Struct.new(
|
3492
3608
|
:topics_detection_job_properties_list,
|
3493
3609
|
:next_token)
|
3610
|
+
SENSITIVE = []
|
3494
3611
|
include Aws::Structure
|
3495
3612
|
end
|
3496
3613
|
|
@@ -3539,6 +3656,7 @@ module Aws::Comprehend
|
|
3539
3656
|
class OutputDataConfig < Struct.new(
|
3540
3657
|
:s3_uri,
|
3541
3658
|
:kms_key_id)
|
3659
|
+
SENSITIVE = []
|
3542
3660
|
include Aws::Structure
|
3543
3661
|
end
|
3544
3662
|
|
@@ -3561,6 +3679,7 @@ module Aws::Comprehend
|
|
3561
3679
|
class PartOfSpeechTag < Struct.new(
|
3562
3680
|
:tag,
|
3563
3681
|
:score)
|
3682
|
+
SENSITIVE = []
|
3564
3683
|
include Aws::Structure
|
3565
3684
|
end
|
3566
3685
|
|
@@ -3574,6 +3693,7 @@ module Aws::Comprehend
|
|
3574
3693
|
#
|
3575
3694
|
class ResourceInUseException < Struct.new(
|
3576
3695
|
:message)
|
3696
|
+
SENSITIVE = []
|
3577
3697
|
include Aws::Structure
|
3578
3698
|
end
|
3579
3699
|
|
@@ -3588,6 +3708,7 @@ module Aws::Comprehend
|
|
3588
3708
|
#
|
3589
3709
|
class ResourceLimitExceededException < Struct.new(
|
3590
3710
|
:message)
|
3711
|
+
SENSITIVE = []
|
3591
3712
|
include Aws::Structure
|
3592
3713
|
end
|
3593
3714
|
|
@@ -3601,6 +3722,7 @@ module Aws::Comprehend
|
|
3601
3722
|
#
|
3602
3723
|
class ResourceNotFoundException < Struct.new(
|
3603
3724
|
:message)
|
3725
|
+
SENSITIVE = []
|
3604
3726
|
include Aws::Structure
|
3605
3727
|
end
|
3606
3728
|
|
@@ -3614,6 +3736,7 @@ module Aws::Comprehend
|
|
3614
3736
|
#
|
3615
3737
|
class ResourceUnavailableException < Struct.new(
|
3616
3738
|
:message)
|
3739
|
+
SENSITIVE = []
|
3617
3740
|
include Aws::Structure
|
3618
3741
|
end
|
3619
3742
|
|
@@ -3660,6 +3783,7 @@ module Aws::Comprehend
|
|
3660
3783
|
:job_status,
|
3661
3784
|
:submit_time_before,
|
3662
3785
|
:submit_time_after)
|
3786
|
+
SENSITIVE = []
|
3663
3787
|
include Aws::Structure
|
3664
3788
|
end
|
3665
3789
|
|
@@ -3747,6 +3871,7 @@ module Aws::Comprehend
|
|
3747
3871
|
:data_access_role_arn,
|
3748
3872
|
:volume_kms_key_id,
|
3749
3873
|
:vpc_config)
|
3874
|
+
SENSITIVE = []
|
3750
3875
|
include Aws::Structure
|
3751
3876
|
end
|
3752
3877
|
|
@@ -3780,6 +3905,7 @@ module Aws::Comprehend
|
|
3780
3905
|
:negative,
|
3781
3906
|
:neutral,
|
3782
3907
|
:mixed)
|
3908
|
+
SENSITIVE = []
|
3783
3909
|
include Aws::Structure
|
3784
3910
|
end
|
3785
3911
|
|
@@ -3870,6 +3996,7 @@ module Aws::Comprehend
|
|
3870
3996
|
:client_request_token,
|
3871
3997
|
:volume_kms_key_id,
|
3872
3998
|
:vpc_config)
|
3999
|
+
SENSITIVE = []
|
3873
4000
|
include Aws::Structure
|
3874
4001
|
end
|
3875
4002
|
|
@@ -3901,6 +4028,7 @@ module Aws::Comprehend
|
|
3901
4028
|
class StartDocumentClassificationJobResponse < Struct.new(
|
3902
4029
|
:job_id,
|
3903
4030
|
:job_status)
|
4031
|
+
SENSITIVE = []
|
3904
4032
|
include Aws::Structure
|
3905
4033
|
end
|
3906
4034
|
|
@@ -3989,6 +4117,7 @@ module Aws::Comprehend
|
|
3989
4117
|
:client_request_token,
|
3990
4118
|
:volume_kms_key_id,
|
3991
4119
|
:vpc_config)
|
4120
|
+
SENSITIVE = []
|
3992
4121
|
include Aws::Structure
|
3993
4122
|
end
|
3994
4123
|
|
@@ -4017,6 +4146,7 @@ module Aws::Comprehend
|
|
4017
4146
|
class StartDominantLanguageDetectionJobResponse < Struct.new(
|
4018
4147
|
:job_id,
|
4019
4148
|
:job_status)
|
4149
|
+
SENSITIVE = []
|
4020
4150
|
include Aws::Structure
|
4021
4151
|
end
|
4022
4152
|
|
@@ -4123,6 +4253,7 @@ module Aws::Comprehend
|
|
4123
4253
|
:client_request_token,
|
4124
4254
|
:volume_kms_key_id,
|
4125
4255
|
:vpc_config)
|
4256
|
+
SENSITIVE = []
|
4126
4257
|
include Aws::Structure
|
4127
4258
|
end
|
4128
4259
|
|
@@ -4156,6 +4287,7 @@ module Aws::Comprehend
|
|
4156
4287
|
class StartEntitiesDetectionJobResponse < Struct.new(
|
4157
4288
|
:job_id,
|
4158
4289
|
:job_status)
|
4290
|
+
SENSITIVE = []
|
4159
4291
|
include Aws::Structure
|
4160
4292
|
end
|
4161
4293
|
|
@@ -4252,6 +4384,7 @@ module Aws::Comprehend
|
|
4252
4384
|
:client_request_token,
|
4253
4385
|
:volume_kms_key_id,
|
4254
4386
|
:vpc_config)
|
4387
|
+
SENSITIVE = []
|
4255
4388
|
include Aws::Structure
|
4256
4389
|
end
|
4257
4390
|
|
@@ -4280,6 +4413,7 @@ module Aws::Comprehend
|
|
4280
4413
|
class StartKeyPhrasesDetectionJobResponse < Struct.new(
|
4281
4414
|
:job_id,
|
4282
4415
|
:job_status)
|
4416
|
+
SENSITIVE = []
|
4283
4417
|
include Aws::Structure
|
4284
4418
|
end
|
4285
4419
|
|
@@ -4376,6 +4510,7 @@ module Aws::Comprehend
|
|
4376
4510
|
:client_request_token,
|
4377
4511
|
:volume_kms_key_id,
|
4378
4512
|
:vpc_config)
|
4513
|
+
SENSITIVE = []
|
4379
4514
|
include Aws::Structure
|
4380
4515
|
end
|
4381
4516
|
|
@@ -4404,6 +4539,7 @@ module Aws::Comprehend
|
|
4404
4539
|
class StartSentimentDetectionJobResponse < Struct.new(
|
4405
4540
|
:job_id,
|
4406
4541
|
:job_status)
|
4542
|
+
SENSITIVE = []
|
4407
4543
|
include Aws::Structure
|
4408
4544
|
end
|
4409
4545
|
|
@@ -4501,6 +4637,7 @@ module Aws::Comprehend
|
|
4501
4637
|
:client_request_token,
|
4502
4638
|
:volume_kms_key_id,
|
4503
4639
|
:vpc_config)
|
4640
|
+
SENSITIVE = []
|
4504
4641
|
include Aws::Structure
|
4505
4642
|
end
|
4506
4643
|
|
@@ -4529,6 +4666,7 @@ module Aws::Comprehend
|
|
4529
4666
|
class StartTopicsDetectionJobResponse < Struct.new(
|
4530
4667
|
:job_id,
|
4531
4668
|
:job_status)
|
4669
|
+
SENSITIVE = []
|
4532
4670
|
include Aws::Structure
|
4533
4671
|
end
|
4534
4672
|
|
@@ -4547,6 +4685,7 @@ module Aws::Comprehend
|
|
4547
4685
|
#
|
4548
4686
|
class StopDominantLanguageDetectionJobRequest < Struct.new(
|
4549
4687
|
:job_id)
|
4688
|
+
SENSITIVE = []
|
4550
4689
|
include Aws::Structure
|
4551
4690
|
end
|
4552
4691
|
|
@@ -4565,6 +4704,7 @@ module Aws::Comprehend
|
|
4565
4704
|
class StopDominantLanguageDetectionJobResponse < Struct.new(
|
4566
4705
|
:job_id,
|
4567
4706
|
:job_status)
|
4707
|
+
SENSITIVE = []
|
4568
4708
|
include Aws::Structure
|
4569
4709
|
end
|
4570
4710
|
|
@@ -4583,6 +4723,7 @@ module Aws::Comprehend
|
|
4583
4723
|
#
|
4584
4724
|
class StopEntitiesDetectionJobRequest < Struct.new(
|
4585
4725
|
:job_id)
|
4726
|
+
SENSITIVE = []
|
4586
4727
|
include Aws::Structure
|
4587
4728
|
end
|
4588
4729
|
|
@@ -4601,6 +4742,7 @@ module Aws::Comprehend
|
|
4601
4742
|
class StopEntitiesDetectionJobResponse < Struct.new(
|
4602
4743
|
:job_id,
|
4603
4744
|
:job_status)
|
4745
|
+
SENSITIVE = []
|
4604
4746
|
include Aws::Structure
|
4605
4747
|
end
|
4606
4748
|
|
@@ -4619,6 +4761,7 @@ module Aws::Comprehend
|
|
4619
4761
|
#
|
4620
4762
|
class StopKeyPhrasesDetectionJobRequest < Struct.new(
|
4621
4763
|
:job_id)
|
4764
|
+
SENSITIVE = []
|
4622
4765
|
include Aws::Structure
|
4623
4766
|
end
|
4624
4767
|
|
@@ -4637,6 +4780,7 @@ module Aws::Comprehend
|
|
4637
4780
|
class StopKeyPhrasesDetectionJobResponse < Struct.new(
|
4638
4781
|
:job_id,
|
4639
4782
|
:job_status)
|
4783
|
+
SENSITIVE = []
|
4640
4784
|
include Aws::Structure
|
4641
4785
|
end
|
4642
4786
|
|
@@ -4655,6 +4799,7 @@ module Aws::Comprehend
|
|
4655
4799
|
#
|
4656
4800
|
class StopSentimentDetectionJobRequest < Struct.new(
|
4657
4801
|
:job_id)
|
4802
|
+
SENSITIVE = []
|
4658
4803
|
include Aws::Structure
|
4659
4804
|
end
|
4660
4805
|
|
@@ -4673,6 +4818,7 @@ module Aws::Comprehend
|
|
4673
4818
|
class StopSentimentDetectionJobResponse < Struct.new(
|
4674
4819
|
:job_id,
|
4675
4820
|
:job_status)
|
4821
|
+
SENSITIVE = []
|
4676
4822
|
include Aws::Structure
|
4677
4823
|
end
|
4678
4824
|
|
@@ -4692,6 +4838,7 @@ module Aws::Comprehend
|
|
4692
4838
|
#
|
4693
4839
|
class StopTrainingDocumentClassifierRequest < Struct.new(
|
4694
4840
|
:document_classifier_arn)
|
4841
|
+
SENSITIVE = []
|
4695
4842
|
include Aws::Structure
|
4696
4843
|
end
|
4697
4844
|
|
@@ -4715,6 +4862,7 @@ module Aws::Comprehend
|
|
4715
4862
|
#
|
4716
4863
|
class StopTrainingEntityRecognizerRequest < Struct.new(
|
4717
4864
|
:entity_recognizer_arn)
|
4865
|
+
SENSITIVE = []
|
4718
4866
|
include Aws::Structure
|
4719
4867
|
end
|
4720
4868
|
|
@@ -4758,6 +4906,7 @@ module Aws::Comprehend
|
|
4758
4906
|
:begin_offset,
|
4759
4907
|
:end_offset,
|
4760
4908
|
:part_of_speech)
|
4909
|
+
SENSITIVE = []
|
4761
4910
|
include Aws::Structure
|
4762
4911
|
end
|
4763
4912
|
|
@@ -4795,6 +4944,7 @@ module Aws::Comprehend
|
|
4795
4944
|
class Tag < Struct.new(
|
4796
4945
|
:key,
|
4797
4946
|
:value)
|
4947
|
+
SENSITIVE = []
|
4798
4948
|
include Aws::Structure
|
4799
4949
|
end
|
4800
4950
|
|
@@ -4827,6 +4977,7 @@ module Aws::Comprehend
|
|
4827
4977
|
class TagResourceRequest < Struct.new(
|
4828
4978
|
:resource_arn,
|
4829
4979
|
:tags)
|
4980
|
+
SENSITIVE = []
|
4830
4981
|
include Aws::Structure
|
4831
4982
|
end
|
4832
4983
|
|
@@ -4843,6 +4994,7 @@ module Aws::Comprehend
|
|
4843
4994
|
#
|
4844
4995
|
class TextSizeLimitExceededException < Struct.new(
|
4845
4996
|
:message)
|
4997
|
+
SENSITIVE = []
|
4846
4998
|
include Aws::Structure
|
4847
4999
|
end
|
4848
5000
|
|
@@ -4855,6 +5007,7 @@ module Aws::Comprehend
|
|
4855
5007
|
#
|
4856
5008
|
class TooManyRequestsException < Struct.new(
|
4857
5009
|
:message)
|
5010
|
+
SENSITIVE = []
|
4858
5011
|
include Aws::Structure
|
4859
5012
|
end
|
4860
5013
|
|
@@ -4868,6 +5021,7 @@ module Aws::Comprehend
|
|
4868
5021
|
#
|
4869
5022
|
class TooManyTagKeysException < Struct.new(
|
4870
5023
|
:message)
|
5024
|
+
SENSITIVE = []
|
4871
5025
|
include Aws::Structure
|
4872
5026
|
end
|
4873
5027
|
|
@@ -4882,6 +5036,7 @@ module Aws::Comprehend
|
|
4882
5036
|
#
|
4883
5037
|
class TooManyTagsException < Struct.new(
|
4884
5038
|
:message)
|
5039
|
+
SENSITIVE = []
|
4885
5040
|
include Aws::Structure
|
4886
5041
|
end
|
4887
5042
|
|
@@ -4927,6 +5082,7 @@ module Aws::Comprehend
|
|
4927
5082
|
:job_status,
|
4928
5083
|
:submit_time_before,
|
4929
5084
|
:submit_time_after)
|
5085
|
+
SENSITIVE = []
|
4930
5086
|
include Aws::Structure
|
4931
5087
|
end
|
4932
5088
|
|
@@ -5016,6 +5172,7 @@ module Aws::Comprehend
|
|
5016
5172
|
:data_access_role_arn,
|
5017
5173
|
:volume_kms_key_id,
|
5018
5174
|
:vpc_config)
|
5175
|
+
SENSITIVE = []
|
5019
5176
|
include Aws::Structure
|
5020
5177
|
end
|
5021
5178
|
|
@@ -5032,6 +5189,7 @@ module Aws::Comprehend
|
|
5032
5189
|
#
|
5033
5190
|
class UnsupportedLanguageException < Struct.new(
|
5034
5191
|
:message)
|
5192
|
+
SENSITIVE = []
|
5035
5193
|
include Aws::Structure
|
5036
5194
|
end
|
5037
5195
|
|
@@ -5061,6 +5219,7 @@ module Aws::Comprehend
|
|
5061
5219
|
class UntagResourceRequest < Struct.new(
|
5062
5220
|
:resource_arn,
|
5063
5221
|
:tag_keys)
|
5222
|
+
SENSITIVE = []
|
5064
5223
|
include Aws::Structure
|
5065
5224
|
end
|
5066
5225
|
|
@@ -5091,6 +5250,7 @@ module Aws::Comprehend
|
|
5091
5250
|
class UpdateEndpointRequest < Struct.new(
|
5092
5251
|
:endpoint_arn,
|
5093
5252
|
:desired_inference_units)
|
5253
|
+
SENSITIVE = []
|
5094
5254
|
include Aws::Structure
|
5095
5255
|
end
|
5096
5256
|
|
@@ -5146,6 +5306,7 @@ module Aws::Comprehend
|
|
5146
5306
|
class VpcConfig < Struct.new(
|
5147
5307
|
:security_group_ids,
|
5148
5308
|
:subnets)
|
5309
|
+
SENSITIVE = []
|
5149
5310
|
include Aws::Structure
|
5150
5311
|
end
|
5151
5312
|
|