@aws-sdk/client-comprehend 3.428.0 → 3.429.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.
|
@@ -13,11 +13,11 @@ export declare const Split: {
|
|
|
13
13
|
export type Split = (typeof Split)[keyof typeof Split];
|
|
14
14
|
export interface AugmentedManifestsListItem {
|
|
15
15
|
S3Uri: string | undefined;
|
|
16
|
-
Split?: Split
|
|
16
|
+
Split?: Split;
|
|
17
17
|
AttributeNames: string[] | undefined;
|
|
18
18
|
AnnotationDataS3Uri?: string;
|
|
19
19
|
SourceDocumentsS3Uri?: string;
|
|
20
|
-
DocumentType?: AugmentedManifestsDocumentTypeFormat
|
|
20
|
+
DocumentType?: AugmentedManifestsDocumentTypeFormat;
|
|
21
21
|
}
|
|
22
22
|
export interface BatchDetectDominantLanguageRequest {
|
|
23
23
|
TextList: string[] | undefined;
|
|
@@ -67,7 +67,7 @@ export declare const InvalidRequestDetailReason: {
|
|
|
67
67
|
export type InvalidRequestDetailReason =
|
|
68
68
|
(typeof InvalidRequestDetailReason)[keyof typeof InvalidRequestDetailReason];
|
|
69
69
|
export interface InvalidRequestDetail {
|
|
70
|
-
Reason?: InvalidRequestDetailReason
|
|
70
|
+
Reason?: InvalidRequestDetailReason;
|
|
71
71
|
}
|
|
72
72
|
export declare const InvalidRequestReason: {
|
|
73
73
|
readonly INVALID_DOCUMENT: "INVALID_DOCUMENT";
|
|
@@ -78,7 +78,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
78
78
|
readonly name: "InvalidRequestException";
|
|
79
79
|
readonly $fault: "client";
|
|
80
80
|
Message?: string;
|
|
81
|
-
Reason?: InvalidRequestReason
|
|
81
|
+
Reason?: InvalidRequestReason;
|
|
82
82
|
Detail?: InvalidRequestDetail;
|
|
83
83
|
constructor(
|
|
84
84
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
@@ -109,7 +109,7 @@ export declare const LanguageCode: {
|
|
|
109
109
|
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
110
110
|
export interface BatchDetectEntitiesRequest {
|
|
111
111
|
TextList: string[] | undefined;
|
|
112
|
-
LanguageCode: LanguageCode |
|
|
112
|
+
LanguageCode: LanguageCode | undefined;
|
|
113
113
|
}
|
|
114
114
|
export interface ChildBlock {
|
|
115
115
|
ChildBlockId?: string;
|
|
@@ -136,7 +136,7 @@ export declare const EntityType: {
|
|
|
136
136
|
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
137
137
|
export interface Entity {
|
|
138
138
|
Score?: number;
|
|
139
|
-
Type?: EntityType
|
|
139
|
+
Type?: EntityType;
|
|
140
140
|
Text?: string;
|
|
141
141
|
BeginOffset?: number;
|
|
142
142
|
EndOffset?: number;
|
|
@@ -160,7 +160,7 @@ export declare class UnsupportedLanguageException extends __BaseException {
|
|
|
160
160
|
}
|
|
161
161
|
export interface BatchDetectKeyPhrasesRequest {
|
|
162
162
|
TextList: string[] | undefined;
|
|
163
|
-
LanguageCode: LanguageCode |
|
|
163
|
+
LanguageCode: LanguageCode | undefined;
|
|
164
164
|
}
|
|
165
165
|
export interface KeyPhrase {
|
|
166
166
|
Score?: number;
|
|
@@ -178,7 +178,7 @@ export interface BatchDetectKeyPhrasesResponse {
|
|
|
178
178
|
}
|
|
179
179
|
export interface BatchDetectSentimentRequest {
|
|
180
180
|
TextList: string[] | undefined;
|
|
181
|
-
LanguageCode: LanguageCode |
|
|
181
|
+
LanguageCode: LanguageCode | undefined;
|
|
182
182
|
}
|
|
183
183
|
export declare const SentimentType: {
|
|
184
184
|
readonly MIXED: "MIXED";
|
|
@@ -195,7 +195,7 @@ export interface SentimentScore {
|
|
|
195
195
|
}
|
|
196
196
|
export interface BatchDetectSentimentItemResult {
|
|
197
197
|
Index?: number;
|
|
198
|
-
Sentiment?: SentimentType
|
|
198
|
+
Sentiment?: SentimentType;
|
|
199
199
|
SentimentScore?: SentimentScore;
|
|
200
200
|
}
|
|
201
201
|
export interface BatchDetectSentimentResponse {
|
|
@@ -214,7 +214,7 @@ export type SyntaxLanguageCode =
|
|
|
214
214
|
(typeof SyntaxLanguageCode)[keyof typeof SyntaxLanguageCode];
|
|
215
215
|
export interface BatchDetectSyntaxRequest {
|
|
216
216
|
TextList: string[] | undefined;
|
|
217
|
-
LanguageCode: SyntaxLanguageCode |
|
|
217
|
+
LanguageCode: SyntaxLanguageCode | undefined;
|
|
218
218
|
}
|
|
219
219
|
export declare const PartOfSpeechTagType: {
|
|
220
220
|
readonly ADJ: "ADJ";
|
|
@@ -239,7 +239,7 @@ export declare const PartOfSpeechTagType: {
|
|
|
239
239
|
export type PartOfSpeechTagType =
|
|
240
240
|
(typeof PartOfSpeechTagType)[keyof typeof PartOfSpeechTagType];
|
|
241
241
|
export interface PartOfSpeechTag {
|
|
242
|
-
Tag?: PartOfSpeechTagType
|
|
242
|
+
Tag?: PartOfSpeechTagType;
|
|
243
243
|
Score?: number;
|
|
244
244
|
}
|
|
245
245
|
export interface SyntaxToken {
|
|
@@ -259,10 +259,10 @@ export interface BatchDetectSyntaxResponse {
|
|
|
259
259
|
}
|
|
260
260
|
export interface BatchDetectTargetedSentimentRequest {
|
|
261
261
|
TextList: string[] | undefined;
|
|
262
|
-
LanguageCode: LanguageCode |
|
|
262
|
+
LanguageCode: LanguageCode | undefined;
|
|
263
263
|
}
|
|
264
264
|
export interface MentionSentiment {
|
|
265
|
-
Sentiment?: SentimentType
|
|
265
|
+
Sentiment?: SentimentType;
|
|
266
266
|
SentimentScore?: SentimentScore;
|
|
267
267
|
}
|
|
268
268
|
export declare const TargetedSentimentEntityType: {
|
|
@@ -290,7 +290,7 @@ export interface TargetedSentimentMention {
|
|
|
290
290
|
Score?: number;
|
|
291
291
|
GroupScore?: number;
|
|
292
292
|
Text?: string;
|
|
293
|
-
Type?: TargetedSentimentEntityType
|
|
293
|
+
Type?: TargetedSentimentEntityType;
|
|
294
294
|
MentionSentiment?: MentionSentiment;
|
|
295
295
|
BeginOffset?: number;
|
|
296
296
|
EndOffset?: number;
|
|
@@ -333,11 +333,11 @@ export type RelationshipType =
|
|
|
333
333
|
(typeof RelationshipType)[keyof typeof RelationshipType];
|
|
334
334
|
export interface RelationshipsListItem {
|
|
335
335
|
Ids?: string[];
|
|
336
|
-
Type?: RelationshipType
|
|
336
|
+
Type?: RelationshipType;
|
|
337
337
|
}
|
|
338
338
|
export interface Block {
|
|
339
339
|
Id?: string;
|
|
340
|
-
BlockType?: BlockType
|
|
340
|
+
BlockType?: BlockType;
|
|
341
341
|
Text?: string;
|
|
342
342
|
Page?: number;
|
|
343
343
|
Geometry?: Geometry;
|
|
@@ -378,9 +378,9 @@ export declare const DocumentReadFeatureTypes: {
|
|
|
378
378
|
export type DocumentReadFeatureTypes =
|
|
379
379
|
(typeof DocumentReadFeatureTypes)[keyof typeof DocumentReadFeatureTypes];
|
|
380
380
|
export interface DocumentReaderConfig {
|
|
381
|
-
DocumentReadAction: DocumentReadAction |
|
|
382
|
-
DocumentReadMode?: DocumentReadMode
|
|
383
|
-
FeatureTypes?:
|
|
381
|
+
DocumentReadAction: DocumentReadAction | undefined;
|
|
382
|
+
DocumentReadMode?: DocumentReadMode;
|
|
383
|
+
FeatureTypes?: DocumentReadFeatureTypes[];
|
|
384
384
|
}
|
|
385
385
|
export interface ClassifyDocumentRequest {
|
|
386
386
|
Text?: string;
|
|
@@ -413,7 +413,7 @@ export declare const DocumentType: {
|
|
|
413
413
|
export type DocumentType = (typeof DocumentType)[keyof typeof DocumentType];
|
|
414
414
|
export interface DocumentTypeListItem {
|
|
415
415
|
Page?: number;
|
|
416
|
-
Type?: DocumentType
|
|
416
|
+
Type?: DocumentType;
|
|
417
417
|
}
|
|
418
418
|
export declare const PageBasedErrorCode: {
|
|
419
419
|
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
@@ -426,7 +426,7 @@ export type PageBasedErrorCode =
|
|
|
426
426
|
(typeof PageBasedErrorCode)[keyof typeof PageBasedErrorCode];
|
|
427
427
|
export interface ErrorsListItem {
|
|
428
428
|
Page?: number;
|
|
429
|
-
ErrorCode?: PageBasedErrorCode
|
|
429
|
+
ErrorCode?: PageBasedErrorCode;
|
|
430
430
|
ErrorMessage?: string;
|
|
431
431
|
}
|
|
432
432
|
export interface DocumentLabel {
|
|
@@ -442,7 +442,7 @@ export type PageBasedWarningCode =
|
|
|
442
442
|
(typeof PageBasedWarningCode)[keyof typeof PageBasedWarningCode];
|
|
443
443
|
export interface WarningsListItem {
|
|
444
444
|
Page?: number;
|
|
445
|
-
WarnCode?: PageBasedWarningCode
|
|
445
|
+
WarnCode?: PageBasedWarningCode;
|
|
446
446
|
WarnMessage?: string;
|
|
447
447
|
}
|
|
448
448
|
export interface ClassifyDocumentResponse {
|
|
@@ -463,7 +463,7 @@ export declare class ResourceUnavailableException extends __BaseException {
|
|
|
463
463
|
}
|
|
464
464
|
export interface ContainsPiiEntitiesRequest {
|
|
465
465
|
Text: string | undefined;
|
|
466
|
-
LanguageCode: LanguageCode |
|
|
466
|
+
LanguageCode: LanguageCode | undefined;
|
|
467
467
|
}
|
|
468
468
|
export declare const PiiEntityType: {
|
|
469
469
|
readonly ADDRESS: "ADDRESS";
|
|
@@ -506,7 +506,7 @@ export declare const PiiEntityType: {
|
|
|
506
506
|
};
|
|
507
507
|
export type PiiEntityType = (typeof PiiEntityType)[keyof typeof PiiEntityType];
|
|
508
508
|
export interface EntityLabel {
|
|
509
|
-
Name?: PiiEntityType
|
|
509
|
+
Name?: PiiEntityType;
|
|
510
510
|
Score?: number;
|
|
511
511
|
}
|
|
512
512
|
export interface ContainsPiiEntitiesResponse {
|
|
@@ -522,7 +522,7 @@ export interface DatasetAugmentedManifestsListItem {
|
|
|
522
522
|
S3Uri: string | undefined;
|
|
523
523
|
AnnotationDataS3Uri?: string;
|
|
524
524
|
SourceDocumentsS3Uri?: string;
|
|
525
|
-
DocumentType?: AugmentedManifestsDocumentTypeFormat
|
|
525
|
+
DocumentType?: AugmentedManifestsDocumentTypeFormat;
|
|
526
526
|
}
|
|
527
527
|
export declare const DatasetDataFormat: {
|
|
528
528
|
readonly AUGMENTED_MANIFEST: "AUGMENTED_MANIFEST";
|
|
@@ -544,7 +544,7 @@ export declare const InputFormat: {
|
|
|
544
544
|
export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
|
|
545
545
|
export interface DatasetEntityRecognizerDocuments {
|
|
546
546
|
S3Uri: string | undefined;
|
|
547
|
-
InputFormat?: InputFormat
|
|
547
|
+
InputFormat?: InputFormat;
|
|
548
548
|
}
|
|
549
549
|
export interface DatasetEntityRecognizerEntityList {
|
|
550
550
|
S3Uri: string | undefined;
|
|
@@ -556,7 +556,7 @@ export interface DatasetEntityRecognizerInputDataConfig {
|
|
|
556
556
|
}
|
|
557
557
|
export interface DatasetInputDataConfig {
|
|
558
558
|
AugmentedManifests?: DatasetAugmentedManifestsListItem[];
|
|
559
|
-
DataFormat?: DatasetDataFormat
|
|
559
|
+
DataFormat?: DatasetDataFormat;
|
|
560
560
|
DocumentClassifierInputDataConfig?: DatasetDocumentClassifierInputDataConfig;
|
|
561
561
|
EntityRecognizerInputDataConfig?: DatasetEntityRecognizerInputDataConfig;
|
|
562
562
|
}
|
|
@@ -567,7 +567,7 @@ export interface Tag {
|
|
|
567
567
|
export interface CreateDatasetRequest {
|
|
568
568
|
FlywheelArn: string | undefined;
|
|
569
569
|
DatasetName: string | undefined;
|
|
570
|
-
DatasetType?: DatasetType
|
|
570
|
+
DatasetType?: DatasetType;
|
|
571
571
|
Description?: string;
|
|
572
572
|
InputDataConfig: DatasetInputDataConfig | undefined;
|
|
573
573
|
ClientRequestToken?: string;
|
|
@@ -633,12 +633,12 @@ export declare const DocumentClassifierDocumentTypeFormat: {
|
|
|
633
633
|
export type DocumentClassifierDocumentTypeFormat =
|
|
634
634
|
(typeof DocumentClassifierDocumentTypeFormat)[keyof typeof DocumentClassifierDocumentTypeFormat];
|
|
635
635
|
export interface DocumentClassifierInputDataConfig {
|
|
636
|
-
DataFormat?: DocumentClassifierDataFormat
|
|
636
|
+
DataFormat?: DocumentClassifierDataFormat;
|
|
637
637
|
S3Uri?: string;
|
|
638
638
|
TestS3Uri?: string;
|
|
639
639
|
LabelDelimiter?: string;
|
|
640
640
|
AugmentedManifests?: AugmentedManifestsListItem[];
|
|
641
|
-
DocumentType?: DocumentClassifierDocumentTypeFormat
|
|
641
|
+
DocumentType?: DocumentClassifierDocumentTypeFormat;
|
|
642
642
|
Documents?: DocumentClassifierDocuments;
|
|
643
643
|
DocumentReaderConfig?: DocumentReaderConfig;
|
|
644
644
|
}
|
|
@@ -665,10 +665,10 @@ export interface CreateDocumentClassifierRequest {
|
|
|
665
665
|
InputDataConfig: DocumentClassifierInputDataConfig | undefined;
|
|
666
666
|
OutputDataConfig?: DocumentClassifierOutputDataConfig;
|
|
667
667
|
ClientRequestToken?: string;
|
|
668
|
-
LanguageCode: LanguageCode |
|
|
668
|
+
LanguageCode: LanguageCode | undefined;
|
|
669
669
|
VolumeKmsKeyId?: string;
|
|
670
670
|
VpcConfig?: VpcConfig;
|
|
671
|
-
Mode?: DocumentClassifierMode
|
|
671
|
+
Mode?: DocumentClassifierMode;
|
|
672
672
|
ModelKmsKeyId?: string;
|
|
673
673
|
ModelPolicy?: string;
|
|
674
674
|
}
|
|
@@ -709,7 +709,7 @@ export type EntityRecognizerDataFormat =
|
|
|
709
709
|
export interface EntityRecognizerDocuments {
|
|
710
710
|
S3Uri: string | undefined;
|
|
711
711
|
TestS3Uri?: string;
|
|
712
|
-
InputFormat?: InputFormat
|
|
712
|
+
InputFormat?: InputFormat;
|
|
713
713
|
}
|
|
714
714
|
export interface EntityRecognizerEntityList {
|
|
715
715
|
S3Uri: string | undefined;
|
|
@@ -718,7 +718,7 @@ export interface EntityTypesListItem {
|
|
|
718
718
|
Type: string | undefined;
|
|
719
719
|
}
|
|
720
720
|
export interface EntityRecognizerInputDataConfig {
|
|
721
|
-
DataFormat?: EntityRecognizerDataFormat
|
|
721
|
+
DataFormat?: EntityRecognizerDataFormat;
|
|
722
722
|
EntityTypes: EntityTypesListItem[] | undefined;
|
|
723
723
|
Documents?: EntityRecognizerDocuments;
|
|
724
724
|
Annotations?: EntityRecognizerAnnotations;
|
|
@@ -732,7 +732,7 @@ export interface CreateEntityRecognizerRequest {
|
|
|
732
732
|
Tags?: Tag[];
|
|
733
733
|
InputDataConfig: EntityRecognizerInputDataConfig | undefined;
|
|
734
734
|
ClientRequestToken?: string;
|
|
735
|
-
LanguageCode: LanguageCode |
|
|
735
|
+
LanguageCode: LanguageCode | undefined;
|
|
736
736
|
VolumeKmsKeyId?: string;
|
|
737
737
|
VpcConfig?: VpcConfig;
|
|
738
738
|
ModelKmsKeyId?: string;
|
|
@@ -753,14 +753,14 @@ export declare const ModelType: {
|
|
|
753
753
|
};
|
|
754
754
|
export type ModelType = (typeof ModelType)[keyof typeof ModelType];
|
|
755
755
|
export interface DocumentClassificationConfig {
|
|
756
|
-
Mode: DocumentClassifierMode |
|
|
756
|
+
Mode: DocumentClassifierMode | undefined;
|
|
757
757
|
Labels?: string[];
|
|
758
758
|
}
|
|
759
759
|
export interface EntityRecognitionConfig {
|
|
760
760
|
EntityTypes: EntityTypesListItem[] | undefined;
|
|
761
761
|
}
|
|
762
762
|
export interface TaskConfig {
|
|
763
|
-
LanguageCode: LanguageCode |
|
|
763
|
+
LanguageCode: LanguageCode | undefined;
|
|
764
764
|
DocumentClassificationConfig?: DocumentClassificationConfig;
|
|
765
765
|
EntityRecognitionConfig?: EntityRecognitionConfig;
|
|
766
766
|
}
|
|
@@ -769,7 +769,7 @@ export interface CreateFlywheelRequest {
|
|
|
769
769
|
ActiveModelArn?: string;
|
|
770
770
|
DataAccessRoleArn: string | undefined;
|
|
771
771
|
TaskConfig?: TaskConfig;
|
|
772
|
-
ModelType?: ModelType
|
|
772
|
+
ModelType?: ModelType;
|
|
773
773
|
DataLakeS3Uri: string | undefined;
|
|
774
774
|
DataSecurityConfig?: DataSecurityConfig;
|
|
775
775
|
ClientRequestToken?: string;
|
|
@@ -812,10 +812,10 @@ export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
|
812
812
|
export interface DatasetProperties {
|
|
813
813
|
DatasetArn?: string;
|
|
814
814
|
DatasetName?: string;
|
|
815
|
-
DatasetType?: DatasetType
|
|
815
|
+
DatasetType?: DatasetType;
|
|
816
816
|
DatasetS3Uri?: string;
|
|
817
817
|
Description?: string;
|
|
818
|
-
Status?: DatasetStatus
|
|
818
|
+
Status?: DatasetStatus;
|
|
819
819
|
Message?: string;
|
|
820
820
|
NumberOfDocuments?: number;
|
|
821
821
|
CreationTime?: Date;
|
|
@@ -829,7 +829,7 @@ export interface DescribeDocumentClassificationJobRequest {
|
|
|
829
829
|
}
|
|
830
830
|
export interface InputDataConfig {
|
|
831
831
|
S3Uri: string | undefined;
|
|
832
|
-
InputFormat?: InputFormat
|
|
832
|
+
InputFormat?: InputFormat;
|
|
833
833
|
DocumentReaderConfig?: DocumentReaderConfig;
|
|
834
834
|
}
|
|
835
835
|
export declare const JobStatus: {
|
|
@@ -849,7 +849,7 @@ export interface DocumentClassificationJobProperties {
|
|
|
849
849
|
JobId?: string;
|
|
850
850
|
JobArn?: string;
|
|
851
851
|
JobName?: string;
|
|
852
|
-
JobStatus?: JobStatus
|
|
852
|
+
JobStatus?: JobStatus;
|
|
853
853
|
Message?: string;
|
|
854
854
|
SubmitTime?: Date;
|
|
855
855
|
EndTime?: Date;
|
|
@@ -888,8 +888,8 @@ export declare const ModelStatus: {
|
|
|
888
888
|
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
889
889
|
export interface DocumentClassifierProperties {
|
|
890
890
|
DocumentClassifierArn?: string;
|
|
891
|
-
LanguageCode?: LanguageCode
|
|
892
|
-
Status?: ModelStatus
|
|
891
|
+
LanguageCode?: LanguageCode;
|
|
892
|
+
Status?: ModelStatus;
|
|
893
893
|
Message?: string;
|
|
894
894
|
SubmitTime?: Date;
|
|
895
895
|
EndTime?: Date;
|
|
@@ -901,7 +901,7 @@ export interface DocumentClassifierProperties {
|
|
|
901
901
|
DataAccessRoleArn?: string;
|
|
902
902
|
VolumeKmsKeyId?: string;
|
|
903
903
|
VpcConfig?: VpcConfig;
|
|
904
|
-
Mode?: DocumentClassifierMode
|
|
904
|
+
Mode?: DocumentClassifierMode;
|
|
905
905
|
ModelKmsKeyId?: string;
|
|
906
906
|
VersionName?: string;
|
|
907
907
|
SourceModelArn?: string;
|
|
@@ -917,7 +917,7 @@ export interface DominantLanguageDetectionJobProperties {
|
|
|
917
917
|
JobId?: string;
|
|
918
918
|
JobArn?: string;
|
|
919
919
|
JobName?: string;
|
|
920
|
-
JobStatus?: JobStatus
|
|
920
|
+
JobStatus?: JobStatus;
|
|
921
921
|
Message?: string;
|
|
922
922
|
SubmitTime?: Date;
|
|
923
923
|
EndTime?: Date;
|
|
@@ -944,7 +944,7 @@ export type EndpointStatus =
|
|
|
944
944
|
(typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
945
945
|
export interface EndpointProperties {
|
|
946
946
|
EndpointArn?: string;
|
|
947
|
-
Status?: EndpointStatus
|
|
947
|
+
Status?: EndpointStatus;
|
|
948
948
|
Message?: string;
|
|
949
949
|
ModelArn?: string;
|
|
950
950
|
DesiredModelArn?: string;
|
|
@@ -966,14 +966,14 @@ export interface EntitiesDetectionJobProperties {
|
|
|
966
966
|
JobId?: string;
|
|
967
967
|
JobArn?: string;
|
|
968
968
|
JobName?: string;
|
|
969
|
-
JobStatus?: JobStatus
|
|
969
|
+
JobStatus?: JobStatus;
|
|
970
970
|
Message?: string;
|
|
971
971
|
SubmitTime?: Date;
|
|
972
972
|
EndTime?: Date;
|
|
973
973
|
EntityRecognizerArn?: string;
|
|
974
974
|
InputDataConfig?: InputDataConfig;
|
|
975
975
|
OutputDataConfig?: OutputDataConfig;
|
|
976
|
-
LanguageCode?: LanguageCode
|
|
976
|
+
LanguageCode?: LanguageCode;
|
|
977
977
|
DataAccessRoleArn?: string;
|
|
978
978
|
VolumeKmsKeyId?: string;
|
|
979
979
|
VpcConfig?: VpcConfig;
|
|
@@ -1011,8 +1011,8 @@ export interface EntityRecognizerMetadata {
|
|
|
1011
1011
|
}
|
|
1012
1012
|
export interface EntityRecognizerProperties {
|
|
1013
1013
|
EntityRecognizerArn?: string;
|
|
1014
|
-
LanguageCode?: LanguageCode
|
|
1015
|
-
Status?: ModelStatus
|
|
1014
|
+
LanguageCode?: LanguageCode;
|
|
1015
|
+
Status?: ModelStatus;
|
|
1016
1016
|
Message?: string;
|
|
1017
1017
|
SubmitTime?: Date;
|
|
1018
1018
|
EndTime?: Date;
|
|
@@ -1039,13 +1039,13 @@ export interface EventsDetectionJobProperties {
|
|
|
1039
1039
|
JobId?: string;
|
|
1040
1040
|
JobArn?: string;
|
|
1041
1041
|
JobName?: string;
|
|
1042
|
-
JobStatus?: JobStatus
|
|
1042
|
+
JobStatus?: JobStatus;
|
|
1043
1043
|
Message?: string;
|
|
1044
1044
|
SubmitTime?: Date;
|
|
1045
1045
|
EndTime?: Date;
|
|
1046
1046
|
InputDataConfig?: InputDataConfig;
|
|
1047
1047
|
OutputDataConfig?: OutputDataConfig;
|
|
1048
|
-
LanguageCode?: LanguageCode
|
|
1048
|
+
LanguageCode?: LanguageCode;
|
|
1049
1049
|
DataAccessRoleArn?: string;
|
|
1050
1050
|
TargetEventTypes?: string[];
|
|
1051
1051
|
}
|
|
@@ -1071,8 +1071,8 @@ export interface FlywheelProperties {
|
|
|
1071
1071
|
TaskConfig?: TaskConfig;
|
|
1072
1072
|
DataLakeS3Uri?: string;
|
|
1073
1073
|
DataSecurityConfig?: DataSecurityConfig;
|
|
1074
|
-
Status?: FlywheelStatus
|
|
1075
|
-
ModelType?: ModelType
|
|
1074
|
+
Status?: FlywheelStatus;
|
|
1075
|
+
ModelType?: ModelType;
|
|
1076
1076
|
Message?: string;
|
|
1077
1077
|
CreationTime?: Date;
|
|
1078
1078
|
LastModifiedTime?: Date;
|
|
@@ -1106,7 +1106,7 @@ export interface FlywheelIterationProperties {
|
|
|
1106
1106
|
FlywheelIterationId?: string;
|
|
1107
1107
|
CreationTime?: Date;
|
|
1108
1108
|
EndTime?: Date;
|
|
1109
|
-
Status?: FlywheelIterationStatus
|
|
1109
|
+
Status?: FlywheelIterationStatus;
|
|
1110
1110
|
Message?: string;
|
|
1111
1111
|
EvaluatedModelArn?: string;
|
|
1112
1112
|
EvaluatedModelMetrics?: FlywheelModelEvaluationMetrics;
|
|
@@ -1124,13 +1124,13 @@ export interface KeyPhrasesDetectionJobProperties {
|
|
|
1124
1124
|
JobId?: string;
|
|
1125
1125
|
JobArn?: string;
|
|
1126
1126
|
JobName?: string;
|
|
1127
|
-
JobStatus?: JobStatus
|
|
1127
|
+
JobStatus?: JobStatus;
|
|
1128
1128
|
Message?: string;
|
|
1129
1129
|
SubmitTime?: Date;
|
|
1130
1130
|
EndTime?: Date;
|
|
1131
1131
|
InputDataConfig?: InputDataConfig;
|
|
1132
1132
|
OutputDataConfig?: OutputDataConfig;
|
|
1133
|
-
LanguageCode?: LanguageCode
|
|
1133
|
+
LanguageCode?: LanguageCode;
|
|
1134
1134
|
DataAccessRoleArn?: string;
|
|
1135
1135
|
VolumeKmsKeyId?: string;
|
|
1136
1136
|
VpcConfig?: VpcConfig;
|
|
@@ -1158,24 +1158,24 @@ export declare const PiiEntitiesDetectionMaskMode: {
|
|
|
1158
1158
|
export type PiiEntitiesDetectionMaskMode =
|
|
1159
1159
|
(typeof PiiEntitiesDetectionMaskMode)[keyof typeof PiiEntitiesDetectionMaskMode];
|
|
1160
1160
|
export interface RedactionConfig {
|
|
1161
|
-
PiiEntityTypes?:
|
|
1162
|
-
MaskMode?: PiiEntitiesDetectionMaskMode
|
|
1161
|
+
PiiEntityTypes?: PiiEntityType[];
|
|
1162
|
+
MaskMode?: PiiEntitiesDetectionMaskMode;
|
|
1163
1163
|
MaskCharacter?: string;
|
|
1164
1164
|
}
|
|
1165
1165
|
export interface PiiEntitiesDetectionJobProperties {
|
|
1166
1166
|
JobId?: string;
|
|
1167
1167
|
JobArn?: string;
|
|
1168
1168
|
JobName?: string;
|
|
1169
|
-
JobStatus?: JobStatus
|
|
1169
|
+
JobStatus?: JobStatus;
|
|
1170
1170
|
Message?: string;
|
|
1171
1171
|
SubmitTime?: Date;
|
|
1172
1172
|
EndTime?: Date;
|
|
1173
1173
|
InputDataConfig?: InputDataConfig;
|
|
1174
1174
|
OutputDataConfig?: PiiOutputDataConfig;
|
|
1175
1175
|
RedactionConfig?: RedactionConfig;
|
|
1176
|
-
LanguageCode?: LanguageCode
|
|
1176
|
+
LanguageCode?: LanguageCode;
|
|
1177
1177
|
DataAccessRoleArn?: string;
|
|
1178
|
-
Mode?: PiiEntitiesDetectionMode
|
|
1178
|
+
Mode?: PiiEntitiesDetectionMode;
|
|
1179
1179
|
}
|
|
1180
1180
|
export interface DescribePiiEntitiesDetectionJobResponse {
|
|
1181
1181
|
PiiEntitiesDetectionJobProperties?: PiiEntitiesDetectionJobProperties;
|
|
@@ -1196,13 +1196,13 @@ export interface SentimentDetectionJobProperties {
|
|
|
1196
1196
|
JobId?: string;
|
|
1197
1197
|
JobArn?: string;
|
|
1198
1198
|
JobName?: string;
|
|
1199
|
-
JobStatus?: JobStatus
|
|
1199
|
+
JobStatus?: JobStatus;
|
|
1200
1200
|
Message?: string;
|
|
1201
1201
|
SubmitTime?: Date;
|
|
1202
1202
|
EndTime?: Date;
|
|
1203
1203
|
InputDataConfig?: InputDataConfig;
|
|
1204
1204
|
OutputDataConfig?: OutputDataConfig;
|
|
1205
|
-
LanguageCode?: LanguageCode
|
|
1205
|
+
LanguageCode?: LanguageCode;
|
|
1206
1206
|
DataAccessRoleArn?: string;
|
|
1207
1207
|
VolumeKmsKeyId?: string;
|
|
1208
1208
|
VpcConfig?: VpcConfig;
|
|
@@ -1217,13 +1217,13 @@ export interface TargetedSentimentDetectionJobProperties {
|
|
|
1217
1217
|
JobId?: string;
|
|
1218
1218
|
JobArn?: string;
|
|
1219
1219
|
JobName?: string;
|
|
1220
|
-
JobStatus?: JobStatus
|
|
1220
|
+
JobStatus?: JobStatus;
|
|
1221
1221
|
Message?: string;
|
|
1222
1222
|
SubmitTime?: Date;
|
|
1223
1223
|
EndTime?: Date;
|
|
1224
1224
|
InputDataConfig?: InputDataConfig;
|
|
1225
1225
|
OutputDataConfig?: OutputDataConfig;
|
|
1226
|
-
LanguageCode?: LanguageCode
|
|
1226
|
+
LanguageCode?: LanguageCode;
|
|
1227
1227
|
DataAccessRoleArn?: string;
|
|
1228
1228
|
VolumeKmsKeyId?: string;
|
|
1229
1229
|
VpcConfig?: VpcConfig;
|
|
@@ -1238,7 +1238,7 @@ export interface TopicsDetectionJobProperties {
|
|
|
1238
1238
|
JobId?: string;
|
|
1239
1239
|
JobArn?: string;
|
|
1240
1240
|
JobName?: string;
|
|
1241
|
-
JobStatus?: JobStatus
|
|
1241
|
+
JobStatus?: JobStatus;
|
|
1242
1242
|
Message?: string;
|
|
1243
1243
|
SubmitTime?: Date;
|
|
1244
1244
|
EndTime?: Date;
|
|
@@ -1260,7 +1260,7 @@ export interface DetectDominantLanguageResponse {
|
|
|
1260
1260
|
}
|
|
1261
1261
|
export interface DetectEntitiesRequest {
|
|
1262
1262
|
Text?: string;
|
|
1263
|
-
LanguageCode?: LanguageCode
|
|
1263
|
+
LanguageCode?: LanguageCode;
|
|
1264
1264
|
EndpointArn?: string;
|
|
1265
1265
|
Bytes?: Uint8Array;
|
|
1266
1266
|
DocumentReaderConfig?: DocumentReaderConfig;
|
|
@@ -1274,18 +1274,18 @@ export interface DetectEntitiesResponse {
|
|
|
1274
1274
|
}
|
|
1275
1275
|
export interface DetectKeyPhrasesRequest {
|
|
1276
1276
|
Text: string | undefined;
|
|
1277
|
-
LanguageCode: LanguageCode |
|
|
1277
|
+
LanguageCode: LanguageCode | undefined;
|
|
1278
1278
|
}
|
|
1279
1279
|
export interface DetectKeyPhrasesResponse {
|
|
1280
1280
|
KeyPhrases?: KeyPhrase[];
|
|
1281
1281
|
}
|
|
1282
1282
|
export interface DetectPiiEntitiesRequest {
|
|
1283
1283
|
Text: string | undefined;
|
|
1284
|
-
LanguageCode: LanguageCode |
|
|
1284
|
+
LanguageCode: LanguageCode | undefined;
|
|
1285
1285
|
}
|
|
1286
1286
|
export interface PiiEntity {
|
|
1287
1287
|
Score?: number;
|
|
1288
|
-
Type?: PiiEntityType
|
|
1288
|
+
Type?: PiiEntityType;
|
|
1289
1289
|
BeginOffset?: number;
|
|
1290
1290
|
EndOffset?: number;
|
|
1291
1291
|
}
|
|
@@ -1294,22 +1294,22 @@ export interface DetectPiiEntitiesResponse {
|
|
|
1294
1294
|
}
|
|
1295
1295
|
export interface DetectSentimentRequest {
|
|
1296
1296
|
Text: string | undefined;
|
|
1297
|
-
LanguageCode: LanguageCode |
|
|
1297
|
+
LanguageCode: LanguageCode | undefined;
|
|
1298
1298
|
}
|
|
1299
1299
|
export interface DetectSentimentResponse {
|
|
1300
|
-
Sentiment?: SentimentType
|
|
1300
|
+
Sentiment?: SentimentType;
|
|
1301
1301
|
SentimentScore?: SentimentScore;
|
|
1302
1302
|
}
|
|
1303
1303
|
export interface DetectSyntaxRequest {
|
|
1304
1304
|
Text: string | undefined;
|
|
1305
|
-
LanguageCode: SyntaxLanguageCode |
|
|
1305
|
+
LanguageCode: SyntaxLanguageCode | undefined;
|
|
1306
1306
|
}
|
|
1307
1307
|
export interface DetectSyntaxResponse {
|
|
1308
1308
|
SyntaxTokens?: SyntaxToken[];
|
|
1309
1309
|
}
|
|
1310
1310
|
export interface DetectTargetedSentimentRequest {
|
|
1311
1311
|
Text: string | undefined;
|
|
1312
|
-
LanguageCode: LanguageCode |
|
|
1312
|
+
LanguageCode: LanguageCode | undefined;
|
|
1313
1313
|
}
|
|
1314
1314
|
export interface DetectTargetedSentimentResponse {
|
|
1315
1315
|
Entities?: TargetedSentimentEntity[];
|
|
@@ -1334,8 +1334,8 @@ export declare class InvalidFilterException extends __BaseException {
|
|
|
1334
1334
|
);
|
|
1335
1335
|
}
|
|
1336
1336
|
export interface DatasetFilter {
|
|
1337
|
-
Status?: DatasetStatus
|
|
1338
|
-
DatasetType?: DatasetType
|
|
1337
|
+
Status?: DatasetStatus;
|
|
1338
|
+
DatasetType?: DatasetType;
|
|
1339
1339
|
CreationTimeAfter?: Date;
|
|
1340
1340
|
CreationTimeBefore?: Date;
|
|
1341
1341
|
}
|
|
@@ -1351,7 +1351,7 @@ export interface ListDatasetsResponse {
|
|
|
1351
1351
|
}
|
|
1352
1352
|
export interface DocumentClassificationJobFilter {
|
|
1353
1353
|
JobName?: string;
|
|
1354
|
-
JobStatus?: JobStatus
|
|
1354
|
+
JobStatus?: JobStatus;
|
|
1355
1355
|
SubmitTimeBefore?: Date;
|
|
1356
1356
|
SubmitTimeAfter?: Date;
|
|
1357
1357
|
}
|
|
@@ -1365,7 +1365,7 @@ export interface ListDocumentClassificationJobsResponse {
|
|
|
1365
1365
|
NextToken?: string;
|
|
1366
1366
|
}
|
|
1367
1367
|
export interface DocumentClassifierFilter {
|
|
1368
|
-
Status?: ModelStatus
|
|
1368
|
+
Status?: ModelStatus;
|
|
1369
1369
|
DocumentClassifierName?: string;
|
|
1370
1370
|
SubmitTimeBefore?: Date;
|
|
1371
1371
|
SubmitTimeAfter?: Date;
|
|
@@ -1388,7 +1388,7 @@ export interface DocumentClassifierSummary {
|
|
|
1388
1388
|
NumberOfVersions?: number;
|
|
1389
1389
|
LatestVersionCreatedAt?: Date;
|
|
1390
1390
|
LatestVersionName?: string;
|
|
1391
|
-
LatestVersionStatus?: ModelStatus
|
|
1391
|
+
LatestVersionStatus?: ModelStatus;
|
|
1392
1392
|
}
|
|
1393
1393
|
export interface ListDocumentClassifierSummariesResponse {
|
|
1394
1394
|
DocumentClassifierSummariesList?: DocumentClassifierSummary[];
|
|
@@ -1396,7 +1396,7 @@ export interface ListDocumentClassifierSummariesResponse {
|
|
|
1396
1396
|
}
|
|
1397
1397
|
export interface DominantLanguageDetectionJobFilter {
|
|
1398
1398
|
JobName?: string;
|
|
1399
|
-
JobStatus?: JobStatus
|
|
1399
|
+
JobStatus?: JobStatus;
|
|
1400
1400
|
SubmitTimeBefore?: Date;
|
|
1401
1401
|
SubmitTimeAfter?: Date;
|
|
1402
1402
|
}
|
|
@@ -1411,7 +1411,7 @@ export interface ListDominantLanguageDetectionJobsResponse {
|
|
|
1411
1411
|
}
|
|
1412
1412
|
export interface EndpointFilter {
|
|
1413
1413
|
ModelArn?: string;
|
|
1414
|
-
Status?: EndpointStatus
|
|
1414
|
+
Status?: EndpointStatus;
|
|
1415
1415
|
CreationTimeBefore?: Date;
|
|
1416
1416
|
CreationTimeAfter?: Date;
|
|
1417
1417
|
}
|
|
@@ -1426,7 +1426,7 @@ export interface ListEndpointsResponse {
|
|
|
1426
1426
|
}
|
|
1427
1427
|
export interface EntitiesDetectionJobFilter {
|
|
1428
1428
|
JobName?: string;
|
|
1429
|
-
JobStatus?: JobStatus
|
|
1429
|
+
JobStatus?: JobStatus;
|
|
1430
1430
|
SubmitTimeBefore?: Date;
|
|
1431
1431
|
SubmitTimeAfter?: Date;
|
|
1432
1432
|
}
|
|
@@ -1440,7 +1440,7 @@ export interface ListEntitiesDetectionJobsResponse {
|
|
|
1440
1440
|
NextToken?: string;
|
|
1441
1441
|
}
|
|
1442
1442
|
export interface EntityRecognizerFilter {
|
|
1443
|
-
Status?: ModelStatus
|
|
1443
|
+
Status?: ModelStatus;
|
|
1444
1444
|
RecognizerName?: string;
|
|
1445
1445
|
SubmitTimeBefore?: Date;
|
|
1446
1446
|
SubmitTimeAfter?: Date;
|
|
@@ -1463,7 +1463,7 @@ export interface EntityRecognizerSummary {
|
|
|
1463
1463
|
NumberOfVersions?: number;
|
|
1464
1464
|
LatestVersionCreatedAt?: Date;
|
|
1465
1465
|
LatestVersionName?: string;
|
|
1466
|
-
LatestVersionStatus?: ModelStatus
|
|
1466
|
+
LatestVersionStatus?: ModelStatus;
|
|
1467
1467
|
}
|
|
1468
1468
|
export interface ListEntityRecognizerSummariesResponse {
|
|
1469
1469
|
EntityRecognizerSummariesList?: EntityRecognizerSummary[];
|
|
@@ -1471,7 +1471,7 @@ export interface ListEntityRecognizerSummariesResponse {
|
|
|
1471
1471
|
}
|
|
1472
1472
|
export interface EventsDetectionJobFilter {
|
|
1473
1473
|
JobName?: string;
|
|
1474
|
-
JobStatus?: JobStatus
|
|
1474
|
+
JobStatus?: JobStatus;
|
|
1475
1475
|
SubmitTimeBefore?: Date;
|
|
1476
1476
|
SubmitTimeAfter?: Date;
|
|
1477
1477
|
}
|
|
@@ -1499,7 +1499,7 @@ export interface ListFlywheelIterationHistoryResponse {
|
|
|
1499
1499
|
NextToken?: string;
|
|
1500
1500
|
}
|
|
1501
1501
|
export interface FlywheelFilter {
|
|
1502
|
-
Status?: FlywheelStatus
|
|
1502
|
+
Status?: FlywheelStatus;
|
|
1503
1503
|
CreationTimeAfter?: Date;
|
|
1504
1504
|
CreationTimeBefore?: Date;
|
|
1505
1505
|
}
|
|
@@ -1512,8 +1512,8 @@ export interface FlywheelSummary {
|
|
|
1512
1512
|
FlywheelArn?: string;
|
|
1513
1513
|
ActiveModelArn?: string;
|
|
1514
1514
|
DataLakeS3Uri?: string;
|
|
1515
|
-
Status?: FlywheelStatus
|
|
1516
|
-
ModelType?: ModelType
|
|
1515
|
+
Status?: FlywheelStatus;
|
|
1516
|
+
ModelType?: ModelType;
|
|
1517
1517
|
Message?: string;
|
|
1518
1518
|
CreationTime?: Date;
|
|
1519
1519
|
LastModifiedTime?: Date;
|
|
@@ -1525,7 +1525,7 @@ export interface ListFlywheelsResponse {
|
|
|
1525
1525
|
}
|
|
1526
1526
|
export interface KeyPhrasesDetectionJobFilter {
|
|
1527
1527
|
JobName?: string;
|
|
1528
|
-
JobStatus?: JobStatus
|
|
1528
|
+
JobStatus?: JobStatus;
|
|
1529
1529
|
SubmitTimeBefore?: Date;
|
|
1530
1530
|
SubmitTimeAfter?: Date;
|
|
1531
1531
|
}
|
|
@@ -1540,7 +1540,7 @@ export interface ListKeyPhrasesDetectionJobsResponse {
|
|
|
1540
1540
|
}
|
|
1541
1541
|
export interface PiiEntitiesDetectionJobFilter {
|
|
1542
1542
|
JobName?: string;
|
|
1543
|
-
JobStatus?: JobStatus
|
|
1543
|
+
JobStatus?: JobStatus;
|
|
1544
1544
|
SubmitTimeBefore?: Date;
|
|
1545
1545
|
SubmitTimeAfter?: Date;
|
|
1546
1546
|
}
|
|
@@ -1555,7 +1555,7 @@ export interface ListPiiEntitiesDetectionJobsResponse {
|
|
|
1555
1555
|
}
|
|
1556
1556
|
export interface SentimentDetectionJobFilter {
|
|
1557
1557
|
JobName?: string;
|
|
1558
|
-
JobStatus?: JobStatus
|
|
1558
|
+
JobStatus?: JobStatus;
|
|
1559
1559
|
SubmitTimeBefore?: Date;
|
|
1560
1560
|
SubmitTimeAfter?: Date;
|
|
1561
1561
|
}
|
|
@@ -1577,7 +1577,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1577
1577
|
}
|
|
1578
1578
|
export interface TargetedSentimentDetectionJobFilter {
|
|
1579
1579
|
JobName?: string;
|
|
1580
|
-
JobStatus?: JobStatus
|
|
1580
|
+
JobStatus?: JobStatus;
|
|
1581
1581
|
SubmitTimeBefore?: Date;
|
|
1582
1582
|
SubmitTimeAfter?: Date;
|
|
1583
1583
|
}
|
|
@@ -1592,7 +1592,7 @@ export interface ListTargetedSentimentDetectionJobsResponse {
|
|
|
1592
1592
|
}
|
|
1593
1593
|
export interface TopicsDetectionJobFilter {
|
|
1594
1594
|
JobName?: string;
|
|
1595
|
-
JobStatus?: JobStatus
|
|
1595
|
+
JobStatus?: JobStatus;
|
|
1596
1596
|
SubmitTimeBefore?: Date;
|
|
1597
1597
|
SubmitTimeAfter?: Date;
|
|
1598
1598
|
}
|
|
@@ -1628,7 +1628,7 @@ export interface StartDocumentClassificationJobRequest {
|
|
|
1628
1628
|
export interface StartDocumentClassificationJobResponse {
|
|
1629
1629
|
JobId?: string;
|
|
1630
1630
|
JobArn?: string;
|
|
1631
|
-
JobStatus?: JobStatus
|
|
1631
|
+
JobStatus?: JobStatus;
|
|
1632
1632
|
DocumentClassifierArn?: string;
|
|
1633
1633
|
}
|
|
1634
1634
|
export interface StartDominantLanguageDetectionJobRequest {
|
|
@@ -1644,7 +1644,7 @@ export interface StartDominantLanguageDetectionJobRequest {
|
|
|
1644
1644
|
export interface StartDominantLanguageDetectionJobResponse {
|
|
1645
1645
|
JobId?: string;
|
|
1646
1646
|
JobArn?: string;
|
|
1647
|
-
JobStatus?: JobStatus
|
|
1647
|
+
JobStatus?: JobStatus;
|
|
1648
1648
|
}
|
|
1649
1649
|
export interface StartEntitiesDetectionJobRequest {
|
|
1650
1650
|
InputDataConfig: InputDataConfig | undefined;
|
|
@@ -1652,7 +1652,7 @@ export interface StartEntitiesDetectionJobRequest {
|
|
|
1652
1652
|
DataAccessRoleArn: string | undefined;
|
|
1653
1653
|
JobName?: string;
|
|
1654
1654
|
EntityRecognizerArn?: string;
|
|
1655
|
-
LanguageCode: LanguageCode |
|
|
1655
|
+
LanguageCode: LanguageCode | undefined;
|
|
1656
1656
|
ClientRequestToken?: string;
|
|
1657
1657
|
VolumeKmsKeyId?: string;
|
|
1658
1658
|
VpcConfig?: VpcConfig;
|
|
@@ -1662,7 +1662,7 @@ export interface StartEntitiesDetectionJobRequest {
|
|
|
1662
1662
|
export interface StartEntitiesDetectionJobResponse {
|
|
1663
1663
|
JobId?: string;
|
|
1664
1664
|
JobArn?: string;
|
|
1665
|
-
JobStatus?: JobStatus
|
|
1665
|
+
JobStatus?: JobStatus;
|
|
1666
1666
|
EntityRecognizerArn?: string;
|
|
1667
1667
|
}
|
|
1668
1668
|
export interface StartEventsDetectionJobRequest {
|
|
@@ -1670,7 +1670,7 @@ export interface StartEventsDetectionJobRequest {
|
|
|
1670
1670
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
1671
1671
|
DataAccessRoleArn: string | undefined;
|
|
1672
1672
|
JobName?: string;
|
|
1673
|
-
LanguageCode: LanguageCode |
|
|
1673
|
+
LanguageCode: LanguageCode | undefined;
|
|
1674
1674
|
ClientRequestToken?: string;
|
|
1675
1675
|
TargetEventTypes: string[] | undefined;
|
|
1676
1676
|
Tags?: Tag[];
|
|
@@ -1678,7 +1678,7 @@ export interface StartEventsDetectionJobRequest {
|
|
|
1678
1678
|
export interface StartEventsDetectionJobResponse {
|
|
1679
1679
|
JobId?: string;
|
|
1680
1680
|
JobArn?: string;
|
|
1681
|
-
JobStatus?: JobStatus
|
|
1681
|
+
JobStatus?: JobStatus;
|
|
1682
1682
|
}
|
|
1683
1683
|
export interface StartFlywheelIterationRequest {
|
|
1684
1684
|
FlywheelArn: string | undefined;
|
|
@@ -1693,7 +1693,7 @@ export interface StartKeyPhrasesDetectionJobRequest {
|
|
|
1693
1693
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
1694
1694
|
DataAccessRoleArn: string | undefined;
|
|
1695
1695
|
JobName?: string;
|
|
1696
|
-
LanguageCode: LanguageCode |
|
|
1696
|
+
LanguageCode: LanguageCode | undefined;
|
|
1697
1697
|
ClientRequestToken?: string;
|
|
1698
1698
|
VolumeKmsKeyId?: string;
|
|
1699
1699
|
VpcConfig?: VpcConfig;
|
|
@@ -1702,30 +1702,30 @@ export interface StartKeyPhrasesDetectionJobRequest {
|
|
|
1702
1702
|
export interface StartKeyPhrasesDetectionJobResponse {
|
|
1703
1703
|
JobId?: string;
|
|
1704
1704
|
JobArn?: string;
|
|
1705
|
-
JobStatus?: JobStatus
|
|
1705
|
+
JobStatus?: JobStatus;
|
|
1706
1706
|
}
|
|
1707
1707
|
export interface StartPiiEntitiesDetectionJobRequest {
|
|
1708
1708
|
InputDataConfig: InputDataConfig | undefined;
|
|
1709
1709
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
1710
|
-
Mode: PiiEntitiesDetectionMode |
|
|
1710
|
+
Mode: PiiEntitiesDetectionMode | undefined;
|
|
1711
1711
|
RedactionConfig?: RedactionConfig;
|
|
1712
1712
|
DataAccessRoleArn: string | undefined;
|
|
1713
1713
|
JobName?: string;
|
|
1714
|
-
LanguageCode: LanguageCode |
|
|
1714
|
+
LanguageCode: LanguageCode | undefined;
|
|
1715
1715
|
ClientRequestToken?: string;
|
|
1716
1716
|
Tags?: Tag[];
|
|
1717
1717
|
}
|
|
1718
1718
|
export interface StartPiiEntitiesDetectionJobResponse {
|
|
1719
1719
|
JobId?: string;
|
|
1720
1720
|
JobArn?: string;
|
|
1721
|
-
JobStatus?: JobStatus
|
|
1721
|
+
JobStatus?: JobStatus;
|
|
1722
1722
|
}
|
|
1723
1723
|
export interface StartSentimentDetectionJobRequest {
|
|
1724
1724
|
InputDataConfig: InputDataConfig | undefined;
|
|
1725
1725
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
1726
1726
|
DataAccessRoleArn: string | undefined;
|
|
1727
1727
|
JobName?: string;
|
|
1728
|
-
LanguageCode: LanguageCode |
|
|
1728
|
+
LanguageCode: LanguageCode | undefined;
|
|
1729
1729
|
ClientRequestToken?: string;
|
|
1730
1730
|
VolumeKmsKeyId?: string;
|
|
1731
1731
|
VpcConfig?: VpcConfig;
|
|
@@ -1734,14 +1734,14 @@ export interface StartSentimentDetectionJobRequest {
|
|
|
1734
1734
|
export interface StartSentimentDetectionJobResponse {
|
|
1735
1735
|
JobId?: string;
|
|
1736
1736
|
JobArn?: string;
|
|
1737
|
-
JobStatus?: JobStatus
|
|
1737
|
+
JobStatus?: JobStatus;
|
|
1738
1738
|
}
|
|
1739
1739
|
export interface StartTargetedSentimentDetectionJobRequest {
|
|
1740
1740
|
InputDataConfig: InputDataConfig | undefined;
|
|
1741
1741
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
1742
1742
|
DataAccessRoleArn: string | undefined;
|
|
1743
1743
|
JobName?: string;
|
|
1744
|
-
LanguageCode: LanguageCode |
|
|
1744
|
+
LanguageCode: LanguageCode | undefined;
|
|
1745
1745
|
ClientRequestToken?: string;
|
|
1746
1746
|
VolumeKmsKeyId?: string;
|
|
1747
1747
|
VpcConfig?: VpcConfig;
|
|
@@ -1750,7 +1750,7 @@ export interface StartTargetedSentimentDetectionJobRequest {
|
|
|
1750
1750
|
export interface StartTargetedSentimentDetectionJobResponse {
|
|
1751
1751
|
JobId?: string;
|
|
1752
1752
|
JobArn?: string;
|
|
1753
|
-
JobStatus?: JobStatus
|
|
1753
|
+
JobStatus?: JobStatus;
|
|
1754
1754
|
}
|
|
1755
1755
|
export interface StartTopicsDetectionJobRequest {
|
|
1756
1756
|
InputDataConfig: InputDataConfig | undefined;
|
|
@@ -1766,35 +1766,35 @@ export interface StartTopicsDetectionJobRequest {
|
|
|
1766
1766
|
export interface StartTopicsDetectionJobResponse {
|
|
1767
1767
|
JobId?: string;
|
|
1768
1768
|
JobArn?: string;
|
|
1769
|
-
JobStatus?: JobStatus
|
|
1769
|
+
JobStatus?: JobStatus;
|
|
1770
1770
|
}
|
|
1771
1771
|
export interface StopDominantLanguageDetectionJobRequest {
|
|
1772
1772
|
JobId: string | undefined;
|
|
1773
1773
|
}
|
|
1774
1774
|
export interface StopDominantLanguageDetectionJobResponse {
|
|
1775
1775
|
JobId?: string;
|
|
1776
|
-
JobStatus?: JobStatus
|
|
1776
|
+
JobStatus?: JobStatus;
|
|
1777
1777
|
}
|
|
1778
1778
|
export interface StopEntitiesDetectionJobRequest {
|
|
1779
1779
|
JobId: string | undefined;
|
|
1780
1780
|
}
|
|
1781
1781
|
export interface StopEntitiesDetectionJobResponse {
|
|
1782
1782
|
JobId?: string;
|
|
1783
|
-
JobStatus?: JobStatus
|
|
1783
|
+
JobStatus?: JobStatus;
|
|
1784
1784
|
}
|
|
1785
1785
|
export interface StopEventsDetectionJobRequest {
|
|
1786
1786
|
JobId: string | undefined;
|
|
1787
1787
|
}
|
|
1788
1788
|
export interface StopEventsDetectionJobResponse {
|
|
1789
1789
|
JobId?: string;
|
|
1790
|
-
JobStatus?: JobStatus
|
|
1790
|
+
JobStatus?: JobStatus;
|
|
1791
1791
|
}
|
|
1792
1792
|
export interface StopKeyPhrasesDetectionJobRequest {
|
|
1793
1793
|
JobId: string | undefined;
|
|
1794
1794
|
}
|
|
1795
1795
|
export interface StopKeyPhrasesDetectionJobResponse {
|
|
1796
1796
|
JobId?: string;
|
|
1797
|
-
JobStatus?: JobStatus
|
|
1797
|
+
JobStatus?: JobStatus;
|
|
1798
1798
|
}
|
|
1799
1799
|
export declare const BatchDetectDominantLanguageRequestFilterSensitiveLog: (
|
|
1800
1800
|
obj: BatchDetectDominantLanguageRequest
|