@aws-sdk/client-comprehend 3.278.0 → 3.281.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.
Files changed (183) hide show
  1. package/README.md +675 -0
  2. package/dist-cjs/Comprehend.js +165 -0
  3. package/dist-cjs/commands/CreateDatasetCommand.js +46 -0
  4. package/dist-cjs/commands/CreateFlywheelCommand.js +46 -0
  5. package/dist-cjs/commands/DeleteFlywheelCommand.js +46 -0
  6. package/dist-cjs/commands/DescribeDatasetCommand.js +46 -0
  7. package/dist-cjs/commands/DescribeFlywheelCommand.js +46 -0
  8. package/dist-cjs/commands/DescribeFlywheelIterationCommand.js +46 -0
  9. package/dist-cjs/commands/ListDatasetsCommand.js +46 -0
  10. package/dist-cjs/commands/ListFlywheelIterationHistoryCommand.js +46 -0
  11. package/dist-cjs/commands/ListFlywheelsCommand.js +46 -0
  12. package/dist-cjs/commands/StartFlywheelIterationCommand.js +46 -0
  13. package/dist-cjs/commands/StopTargetedSentimentDetectionJobCommand.js +3 -3
  14. package/dist-cjs/commands/StopTrainingDocumentClassifierCommand.js +3 -3
  15. package/dist-cjs/commands/StopTrainingEntityRecognizerCommand.js +3 -3
  16. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  17. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  18. package/dist-cjs/commands/UpdateEndpointCommand.js +3 -3
  19. package/dist-cjs/commands/UpdateFlywheelCommand.js +46 -0
  20. package/dist-cjs/commands/index.js +11 -0
  21. package/dist-cjs/endpoint/ruleset.js +3 -3
  22. package/dist-cjs/models/index.js +1 -0
  23. package/dist-cjs/models/models_0.js +242 -120
  24. package/dist-cjs/models/models_1.js +92 -0
  25. package/dist-cjs/pagination/ListDatasetsPaginator.js +36 -0
  26. package/dist-cjs/pagination/ListFlywheelIterationHistoryPaginator.js +36 -0
  27. package/dist-cjs/pagination/ListFlywheelsPaginator.js +36 -0
  28. package/dist-cjs/pagination/index.js +3 -0
  29. package/dist-cjs/protocols/Aws_json1_1.js +1135 -26
  30. package/dist-es/Comprehend.js +165 -0
  31. package/dist-es/commands/CreateDatasetCommand.js +42 -0
  32. package/dist-es/commands/CreateFlywheelCommand.js +42 -0
  33. package/dist-es/commands/DeleteFlywheelCommand.js +42 -0
  34. package/dist-es/commands/DescribeDatasetCommand.js +42 -0
  35. package/dist-es/commands/DescribeFlywheelCommand.js +42 -0
  36. package/dist-es/commands/DescribeFlywheelIterationCommand.js +42 -0
  37. package/dist-es/commands/ListDatasetsCommand.js +42 -0
  38. package/dist-es/commands/ListFlywheelIterationHistoryCommand.js +42 -0
  39. package/dist-es/commands/ListFlywheelsCommand.js +42 -0
  40. package/dist-es/commands/StartFlywheelIterationCommand.js +42 -0
  41. package/dist-es/commands/StopTargetedSentimentDetectionJobCommand.js +1 -1
  42. package/dist-es/commands/StopTrainingDocumentClassifierCommand.js +1 -1
  43. package/dist-es/commands/StopTrainingEntityRecognizerCommand.js +1 -1
  44. package/dist-es/commands/TagResourceCommand.js +1 -1
  45. package/dist-es/commands/UntagResourceCommand.js +1 -1
  46. package/dist-es/commands/UpdateEndpointCommand.js +1 -1
  47. package/dist-es/commands/UpdateFlywheelCommand.js +42 -0
  48. package/dist-es/commands/index.js +11 -0
  49. package/dist-es/endpoint/ruleset.js +3 -3
  50. package/dist-es/models/index.js +1 -0
  51. package/dist-es/models/models_0.js +191 -95
  52. package/dist-es/models/models_1.js +72 -0
  53. package/dist-es/pagination/ListDatasetsPaginator.js +32 -0
  54. package/dist-es/pagination/ListFlywheelIterationHistoryPaginator.js +32 -0
  55. package/dist-es/pagination/ListFlywheelsPaginator.js +32 -0
  56. package/dist-es/pagination/index.js +3 -0
  57. package/dist-es/protocols/Aws_json1_1.js +1109 -23
  58. package/dist-types/Comprehend.d.ts +107 -4
  59. package/dist-types/ComprehendClient.d.ts +13 -2
  60. package/dist-types/commands/BatchDetectDominantLanguageCommand.d.ts +6 -0
  61. package/dist-types/commands/BatchDetectEntitiesCommand.d.ts +6 -0
  62. package/dist-types/commands/BatchDetectKeyPhrasesCommand.d.ts +6 -0
  63. package/dist-types/commands/BatchDetectSentimentCommand.d.ts +6 -0
  64. package/dist-types/commands/BatchDetectSyntaxCommand.d.ts +6 -0
  65. package/dist-types/commands/BatchDetectTargetedSentimentCommand.d.ts +6 -0
  66. package/dist-types/commands/ClassifyDocumentCommand.d.ts +6 -0
  67. package/dist-types/commands/ContainsPiiEntitiesCommand.d.ts +6 -0
  68. package/dist-types/commands/CreateDatasetCommand.d.ts +45 -0
  69. package/dist-types/commands/CreateDocumentClassifierCommand.d.ts +6 -0
  70. package/dist-types/commands/CreateEndpointCommand.d.ts +6 -0
  71. package/dist-types/commands/CreateEntityRecognizerCommand.d.ts +7 -1
  72. package/dist-types/commands/CreateFlywheelCommand.d.ts +53 -0
  73. package/dist-types/commands/DeleteDocumentClassifierCommand.d.ts +6 -0
  74. package/dist-types/commands/DeleteEndpointCommand.d.ts +6 -0
  75. package/dist-types/commands/DeleteEntityRecognizerCommand.d.ts +6 -0
  76. package/dist-types/commands/DeleteFlywheelCommand.d.ts +46 -0
  77. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +6 -0
  78. package/dist-types/commands/DescribeDatasetCommand.d.ts +45 -0
  79. package/dist-types/commands/DescribeDocumentClassificationJobCommand.d.ts +6 -0
  80. package/dist-types/commands/DescribeDocumentClassifierCommand.d.ts +6 -0
  81. package/dist-types/commands/DescribeDominantLanguageDetectionJobCommand.d.ts +6 -0
  82. package/dist-types/commands/DescribeEndpointCommand.d.ts +6 -0
  83. package/dist-types/commands/DescribeEntitiesDetectionJobCommand.d.ts +6 -0
  84. package/dist-types/commands/DescribeEntityRecognizerCommand.d.ts +6 -0
  85. package/dist-types/commands/DescribeEventsDetectionJobCommand.d.ts +6 -0
  86. package/dist-types/commands/DescribeFlywheelCommand.d.ts +44 -0
  87. package/dist-types/commands/DescribeFlywheelIterationCommand.d.ts +45 -0
  88. package/dist-types/commands/DescribeKeyPhrasesDetectionJobCommand.d.ts +6 -0
  89. package/dist-types/commands/DescribePiiEntitiesDetectionJobCommand.d.ts +6 -0
  90. package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +6 -0
  91. package/dist-types/commands/DescribeSentimentDetectionJobCommand.d.ts +6 -0
  92. package/dist-types/commands/DescribeTargetedSentimentDetectionJobCommand.d.ts +6 -0
  93. package/dist-types/commands/DescribeTopicsDetectionJobCommand.d.ts +6 -0
  94. package/dist-types/commands/DetectDominantLanguageCommand.d.ts +6 -0
  95. package/dist-types/commands/DetectEntitiesCommand.d.ts +6 -0
  96. package/dist-types/commands/DetectKeyPhrasesCommand.d.ts +6 -0
  97. package/dist-types/commands/DetectPiiEntitiesCommand.d.ts +6 -0
  98. package/dist-types/commands/DetectSentimentCommand.d.ts +6 -0
  99. package/dist-types/commands/DetectSyntaxCommand.d.ts +6 -0
  100. package/dist-types/commands/DetectTargetedSentimentCommand.d.ts +6 -0
  101. package/dist-types/commands/ImportModelCommand.d.ts +6 -0
  102. package/dist-types/commands/ListDatasetsCommand.d.ts +44 -0
  103. package/dist-types/commands/ListDocumentClassificationJobsCommand.d.ts +6 -0
  104. package/dist-types/commands/ListDocumentClassifierSummariesCommand.d.ts +6 -0
  105. package/dist-types/commands/ListDocumentClassifiersCommand.d.ts +6 -0
  106. package/dist-types/commands/ListDominantLanguageDetectionJobsCommand.d.ts +6 -0
  107. package/dist-types/commands/ListEndpointsCommand.d.ts +6 -0
  108. package/dist-types/commands/ListEntitiesDetectionJobsCommand.d.ts +6 -0
  109. package/dist-types/commands/ListEntityRecognizerSummariesCommand.d.ts +6 -0
  110. package/dist-types/commands/ListEntityRecognizersCommand.d.ts +6 -0
  111. package/dist-types/commands/ListEventsDetectionJobsCommand.d.ts +6 -0
  112. package/dist-types/commands/ListFlywheelIterationHistoryCommand.d.ts +45 -0
  113. package/dist-types/commands/ListFlywheelsCommand.d.ts +43 -0
  114. package/dist-types/commands/ListKeyPhrasesDetectionJobsCommand.d.ts +6 -0
  115. package/dist-types/commands/ListPiiEntitiesDetectionJobsCommand.d.ts +6 -0
  116. package/dist-types/commands/ListSentimentDetectionJobsCommand.d.ts +6 -0
  117. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  118. package/dist-types/commands/ListTargetedSentimentDetectionJobsCommand.d.ts +6 -0
  119. package/dist-types/commands/ListTopicsDetectionJobsCommand.d.ts +6 -0
  120. package/dist-types/commands/PutResourcePolicyCommand.d.ts +6 -0
  121. package/dist-types/commands/StartDocumentClassificationJobCommand.d.ts +9 -2
  122. package/dist-types/commands/StartDominantLanguageDetectionJobCommand.d.ts +6 -0
  123. package/dist-types/commands/StartEntitiesDetectionJobCommand.d.ts +6 -0
  124. package/dist-types/commands/StartEventsDetectionJobCommand.d.ts +6 -0
  125. package/dist-types/commands/StartFlywheelIterationCommand.d.ts +45 -0
  126. package/dist-types/commands/StartKeyPhrasesDetectionJobCommand.d.ts +6 -0
  127. package/dist-types/commands/StartPiiEntitiesDetectionJobCommand.d.ts +6 -0
  128. package/dist-types/commands/StartSentimentDetectionJobCommand.d.ts +6 -0
  129. package/dist-types/commands/StartTargetedSentimentDetectionJobCommand.d.ts +7 -1
  130. package/dist-types/commands/StartTopicsDetectionJobCommand.d.ts +6 -0
  131. package/dist-types/commands/StopDominantLanguageDetectionJobCommand.d.ts +6 -0
  132. package/dist-types/commands/StopEntitiesDetectionJobCommand.d.ts +6 -0
  133. package/dist-types/commands/StopEventsDetectionJobCommand.d.ts +6 -0
  134. package/dist-types/commands/StopKeyPhrasesDetectionJobCommand.d.ts +6 -0
  135. package/dist-types/commands/StopPiiEntitiesDetectionJobCommand.d.ts +6 -0
  136. package/dist-types/commands/StopSentimentDetectionJobCommand.d.ts +6 -0
  137. package/dist-types/commands/StopTargetedSentimentDetectionJobCommand.d.ts +7 -1
  138. package/dist-types/commands/StopTrainingDocumentClassifierCommand.d.ts +7 -1
  139. package/dist-types/commands/StopTrainingEntityRecognizerCommand.d.ts +7 -1
  140. package/dist-types/commands/TagResourceCommand.d.ts +7 -1
  141. package/dist-types/commands/UntagResourceCommand.d.ts +7 -1
  142. package/dist-types/commands/UpdateEndpointCommand.d.ts +7 -1
  143. package/dist-types/commands/UpdateFlywheelCommand.d.ts +43 -0
  144. package/dist-types/commands/index.d.ts +11 -0
  145. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  146. package/dist-types/models/index.d.ts +1 -0
  147. package/dist-types/models/models_0.d.ts +1145 -320
  148. package/dist-types/models/models_1.d.ts +241 -0
  149. package/dist-types/pagination/ListDatasetsPaginator.d.ts +4 -0
  150. package/dist-types/pagination/ListFlywheelIterationHistoryPaginator.d.ts +4 -0
  151. package/dist-types/pagination/ListFlywheelsPaginator.d.ts +4 -0
  152. package/dist-types/pagination/index.d.ts +3 -0
  153. package/dist-types/protocols/Aws_json1_1.d.ts +33 -0
  154. package/dist-types/ts3.4/Comprehend.d.ts +187 -0
  155. package/dist-types/ts3.4/ComprehendClient.d.ts +68 -2
  156. package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +37 -0
  157. package/dist-types/ts3.4/commands/CreateFlywheelCommand.d.ts +37 -0
  158. package/dist-types/ts3.4/commands/DeleteFlywheelCommand.d.ts +37 -0
  159. package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +37 -0
  160. package/dist-types/ts3.4/commands/DescribeFlywheelCommand.d.ts +37 -0
  161. package/dist-types/ts3.4/commands/DescribeFlywheelIterationCommand.d.ts +41 -0
  162. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +34 -0
  163. package/dist-types/ts3.4/commands/ListFlywheelIterationHistoryCommand.d.ts +41 -0
  164. package/dist-types/ts3.4/commands/ListFlywheelsCommand.d.ts +37 -0
  165. package/dist-types/ts3.4/commands/StartFlywheelIterationCommand.d.ts +41 -0
  166. package/dist-types/ts3.4/commands/StopTargetedSentimentDetectionJobCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/StopTrainingDocumentClassifierCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/StopTrainingEntityRecognizerCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  170. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  171. package/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +1 -1
  172. package/dist-types/ts3.4/commands/UpdateFlywheelCommand.d.ts +37 -0
  173. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  174. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  175. package/dist-types/ts3.4/models/index.d.ts +1 -0
  176. package/dist-types/ts3.4/models/models_0.d.ts +424 -138
  177. package/dist-types/ts3.4/models/models_1.d.ts +116 -0
  178. package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +11 -0
  179. package/dist-types/ts3.4/pagination/ListFlywheelIterationHistoryPaginator.d.ts +11 -0
  180. package/dist-types/ts3.4/pagination/ListFlywheelsPaginator.d.ts +11 -0
  181. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  182. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +132 -0
  183. package/package.json +6 -6
@@ -471,6 +471,106 @@ export interface EntityLabel {
471
471
  export interface ContainsPiiEntitiesResponse {
472
472
  Labels?: EntityLabel[];
473
473
  }
474
+ export declare enum DatasetType {
475
+ TEST = "TEST",
476
+ TRAIN = "TRAIN",
477
+ }
478
+ export interface DatasetAugmentedManifestsListItem {
479
+ AttributeNames: string[] | undefined;
480
+ S3Uri: string | undefined;
481
+ AnnotationDataS3Uri?: string;
482
+ SourceDocumentsS3Uri?: string;
483
+ DocumentType?: AugmentedManifestsDocumentTypeFormat | string;
484
+ }
485
+ export declare enum DatasetDataFormat {
486
+ AUGMENTED_MANIFEST = "AUGMENTED_MANIFEST",
487
+ COMPREHEND_CSV = "COMPREHEND_CSV",
488
+ }
489
+ export interface DatasetDocumentClassifierInputDataConfig {
490
+ S3Uri: string | undefined;
491
+ LabelDelimiter?: string;
492
+ }
493
+ export interface DatasetEntityRecognizerAnnotations {
494
+ S3Uri: string | undefined;
495
+ }
496
+ export declare enum InputFormat {
497
+ ONE_DOC_PER_FILE = "ONE_DOC_PER_FILE",
498
+ ONE_DOC_PER_LINE = "ONE_DOC_PER_LINE",
499
+ }
500
+ export interface DatasetEntityRecognizerDocuments {
501
+ S3Uri: string | undefined;
502
+ InputFormat?: InputFormat | string;
503
+ }
504
+ export interface DatasetEntityRecognizerEntityList {
505
+ S3Uri: string | undefined;
506
+ }
507
+ export interface DatasetEntityRecognizerInputDataConfig {
508
+ Annotations?: DatasetEntityRecognizerAnnotations;
509
+ Documents: DatasetEntityRecognizerDocuments | undefined;
510
+ EntityList?: DatasetEntityRecognizerEntityList;
511
+ }
512
+ export interface DatasetInputDataConfig {
513
+ AugmentedManifests?: DatasetAugmentedManifestsListItem[];
514
+ DataFormat?: DatasetDataFormat | string;
515
+ DocumentClassifierInputDataConfig?: DatasetDocumentClassifierInputDataConfig;
516
+ EntityRecognizerInputDataConfig?: DatasetEntityRecognizerInputDataConfig;
517
+ }
518
+ export interface Tag {
519
+ Key: string | undefined;
520
+ Value?: string;
521
+ }
522
+ export interface CreateDatasetRequest {
523
+ FlywheelArn: string | undefined;
524
+ DatasetName: string | undefined;
525
+ DatasetType?: DatasetType | string;
526
+ Description?: string;
527
+ InputDataConfig: DatasetInputDataConfig | undefined;
528
+ ClientRequestToken?: string;
529
+ Tags?: Tag[];
530
+ }
531
+ export interface CreateDatasetResponse {
532
+ DatasetArn?: string;
533
+ }
534
+ export declare class ResourceInUseException extends __BaseException {
535
+ readonly name: "ResourceInUseException";
536
+ readonly $fault: "client";
537
+ Message?: string;
538
+ constructor(
539
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
540
+ );
541
+ }
542
+ export declare class ResourceLimitExceededException extends __BaseException {
543
+ readonly name: "ResourceLimitExceededException";
544
+ readonly $fault: "client";
545
+ Message?: string;
546
+ constructor(
547
+ opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
548
+ );
549
+ }
550
+ export declare class ResourceNotFoundException extends __BaseException {
551
+ readonly name: "ResourceNotFoundException";
552
+ readonly $fault: "client";
553
+ Message?: string;
554
+ constructor(
555
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
556
+ );
557
+ }
558
+ export declare class TooManyRequestsException extends __BaseException {
559
+ readonly name: "TooManyRequestsException";
560
+ readonly $fault: "client";
561
+ Message?: string;
562
+ constructor(
563
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
564
+ );
565
+ }
566
+ export declare class TooManyTagsException extends __BaseException {
567
+ readonly name: "TooManyTagsException";
568
+ readonly $fault: "client";
569
+ Message?: string;
570
+ constructor(
571
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
572
+ );
573
+ }
474
574
  export declare enum DocumentClassifierDataFormat {
475
575
  AUGMENTED_MANIFEST = "AUGMENTED_MANIFEST",
476
576
  COMPREHEND_CSV = "COMPREHEND_CSV",
@@ -489,10 +589,7 @@ export declare enum DocumentClassifierMode {
489
589
  export interface DocumentClassifierOutputDataConfig {
490
590
  S3Uri?: string;
491
591
  KmsKeyId?: string;
492
- }
493
- export interface Tag {
494
- Key: string | undefined;
495
- Value?: string;
592
+ FlywheelStatsS3Prefix?: string;
496
593
  }
497
594
  export interface VpcConfig {
498
595
  SecurityGroupIds: string[] | undefined;
@@ -524,56 +621,18 @@ export declare class KmsKeyValidationException extends __BaseException {
524
621
  opts: __ExceptionOptionType<KmsKeyValidationException, __BaseException>
525
622
  );
526
623
  }
527
- export declare class ResourceInUseException extends __BaseException {
528
- readonly name: "ResourceInUseException";
529
- readonly $fault: "client";
530
- Message?: string;
531
- constructor(
532
- opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
533
- );
534
- }
535
- export declare class ResourceLimitExceededException extends __BaseException {
536
- readonly name: "ResourceLimitExceededException";
537
- readonly $fault: "client";
538
- Message?: string;
539
- constructor(
540
- opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
541
- );
542
- }
543
- export declare class TooManyRequestsException extends __BaseException {
544
- readonly name: "TooManyRequestsException";
545
- readonly $fault: "client";
546
- Message?: string;
547
- constructor(
548
- opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
549
- );
550
- }
551
- export declare class TooManyTagsException extends __BaseException {
552
- readonly name: "TooManyTagsException";
553
- readonly $fault: "client";
554
- Message?: string;
555
- constructor(
556
- opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
557
- );
558
- }
559
624
  export interface CreateEndpointRequest {
560
625
  EndpointName: string | undefined;
561
- ModelArn: string | undefined;
626
+ ModelArn?: string;
562
627
  DesiredInferenceUnits: number | undefined;
563
628
  ClientRequestToken?: string;
564
629
  Tags?: Tag[];
565
630
  DataAccessRoleArn?: string;
631
+ FlywheelArn?: string;
566
632
  }
567
633
  export interface CreateEndpointResponse {
568
634
  EndpointArn?: string;
569
- }
570
- export declare class ResourceNotFoundException extends __BaseException {
571
- readonly name: "ResourceNotFoundException";
572
- readonly $fault: "client";
573
- Message?: string;
574
- constructor(
575
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
576
- );
635
+ ModelArn?: string;
577
636
  }
578
637
  export interface EntityRecognizerAnnotations {
579
638
  S3Uri: string | undefined;
@@ -583,10 +642,6 @@ export declare enum EntityRecognizerDataFormat {
583
642
  AUGMENTED_MANIFEST = "AUGMENTED_MANIFEST",
584
643
  COMPREHEND_CSV = "COMPREHEND_CSV",
585
644
  }
586
- export declare enum InputFormat {
587
- ONE_DOC_PER_FILE = "ONE_DOC_PER_FILE",
588
- ONE_DOC_PER_LINE = "ONE_DOC_PER_LINE",
589
- }
590
645
  export interface EntityRecognizerDocuments {
591
646
  S3Uri: string | undefined;
592
647
  TestS3Uri?: string;
@@ -622,6 +677,43 @@ export interface CreateEntityRecognizerRequest {
622
677
  export interface CreateEntityRecognizerResponse {
623
678
  EntityRecognizerArn?: string;
624
679
  }
680
+ export interface DataSecurityConfig {
681
+ ModelKmsKeyId?: string;
682
+ VolumeKmsKeyId?: string;
683
+ DataLakeKmsKeyId?: string;
684
+ VpcConfig?: VpcConfig;
685
+ }
686
+ export declare enum ModelType {
687
+ DOCUMENT_CLASSIFIER = "DOCUMENT_CLASSIFIER",
688
+ ENTITY_RECOGNIZER = "ENTITY_RECOGNIZER",
689
+ }
690
+ export interface DocumentClassificationConfig {
691
+ Mode: DocumentClassifierMode | string | undefined;
692
+ Labels?: string[];
693
+ }
694
+ export interface EntityRecognitionConfig {
695
+ EntityTypes: EntityTypesListItem[] | undefined;
696
+ }
697
+ export interface TaskConfig {
698
+ LanguageCode: LanguageCode | string | undefined;
699
+ DocumentClassificationConfig?: DocumentClassificationConfig;
700
+ EntityRecognitionConfig?: EntityRecognitionConfig;
701
+ }
702
+ export interface CreateFlywheelRequest {
703
+ FlywheelName: string | undefined;
704
+ ActiveModelArn?: string;
705
+ DataAccessRoleArn: string | undefined;
706
+ TaskConfig?: TaskConfig;
707
+ ModelType?: ModelType | string;
708
+ DataLakeS3Uri: string | undefined;
709
+ DataSecurityConfig?: DataSecurityConfig;
710
+ ClientRequestToken?: string;
711
+ Tags?: Tag[];
712
+ }
713
+ export interface CreateFlywheelResponse {
714
+ FlywheelArn?: string;
715
+ ActiveModelArn?: string;
716
+ }
625
717
  export interface DeleteDocumentClassifierRequest {
626
718
  DocumentClassifierArn: string | undefined;
627
719
  }
@@ -634,11 +726,38 @@ export interface DeleteEntityRecognizerRequest {
634
726
  EntityRecognizerArn: string | undefined;
635
727
  }
636
728
  export interface DeleteEntityRecognizerResponse {}
729
+ export interface DeleteFlywheelRequest {
730
+ FlywheelArn: string | undefined;
731
+ }
732
+ export interface DeleteFlywheelResponse {}
637
733
  export interface DeleteResourcePolicyRequest {
638
734
  ResourceArn: string | undefined;
639
735
  PolicyRevisionId?: string;
640
736
  }
641
737
  export interface DeleteResourcePolicyResponse {}
738
+ export interface DescribeDatasetRequest {
739
+ DatasetArn: string | undefined;
740
+ }
741
+ export declare enum DatasetStatus {
742
+ COMPLETED = "COMPLETED",
743
+ CREATING = "CREATING",
744
+ FAILED = "FAILED",
745
+ }
746
+ export interface DatasetProperties {
747
+ DatasetArn?: string;
748
+ DatasetName?: string;
749
+ DatasetType?: DatasetType | string;
750
+ DatasetS3Uri?: string;
751
+ Description?: string;
752
+ Status?: DatasetStatus | string;
753
+ Message?: string;
754
+ NumberOfDocuments?: number;
755
+ CreationTime?: Date;
756
+ EndTime?: Date;
757
+ }
758
+ export interface DescribeDatasetResponse {
759
+ DatasetProperties?: DatasetProperties;
760
+ }
642
761
  export interface DescribeDocumentClassificationJobRequest {
643
762
  JobId: string | undefined;
644
763
  }
@@ -673,6 +792,7 @@ export interface DocumentClassificationJobProperties {
673
792
  DataAccessRoleArn?: string;
674
793
  VolumeKmsKeyId?: string;
675
794
  VpcConfig?: VpcConfig;
795
+ FlywheelArn?: string;
676
796
  }
677
797
  export interface DescribeDocumentClassificationJobResponse {
678
798
  DocumentClassificationJobProperties?: DocumentClassificationJobProperties;
@@ -716,6 +836,7 @@ export interface DocumentClassifierProperties {
716
836
  ModelKmsKeyId?: string;
717
837
  VersionName?: string;
718
838
  SourceModelArn?: string;
839
+ FlywheelArn?: string;
719
840
  }
720
841
  export interface DescribeDocumentClassifierResponse {
721
842
  DocumentClassifierProperties?: DocumentClassifierProperties;
@@ -762,6 +883,7 @@ export interface EndpointProperties {
762
883
  LastModifiedTime?: Date;
763
884
  DataAccessRoleArn?: string;
764
885
  DesiredDataAccessRoleArn?: string;
886
+ FlywheelArn?: string;
765
887
  }
766
888
  export interface DescribeEndpointResponse {
767
889
  EndpointProperties?: EndpointProperties;
@@ -791,6 +913,9 @@ export interface DescribeEntitiesDetectionJobResponse {
791
913
  export interface DescribeEntityRecognizerRequest {
792
914
  EntityRecognizerArn: string | undefined;
793
915
  }
916
+ export interface EntityRecognizerOutputDataConfig {
917
+ FlywheelStatsS3Prefix?: string;
918
+ }
794
919
  export interface EntityTypesEvaluationMetrics {
795
920
  Precision?: number;
796
921
  Recall?: number;
@@ -829,6 +954,8 @@ export interface EntityRecognizerProperties {
829
954
  ModelKmsKeyId?: string;
830
955
  VersionName?: string;
831
956
  SourceModelArn?: string;
957
+ FlywheelArn?: string;
958
+ OutputDataConfig?: EntityRecognizerOutputDataConfig;
832
959
  }
833
960
  export interface DescribeEntityRecognizerResponse {
834
961
  EntityRecognizerProperties?: EntityRecognizerProperties;
@@ -853,6 +980,67 @@ export interface EventsDetectionJobProperties {
853
980
  export interface DescribeEventsDetectionJobResponse {
854
981
  EventsDetectionJobProperties?: EventsDetectionJobProperties;
855
982
  }
983
+ export interface DescribeFlywheelRequest {
984
+ FlywheelArn: string | undefined;
985
+ }
986
+ export declare enum FlywheelStatus {
987
+ ACTIVE = "ACTIVE",
988
+ CREATING = "CREATING",
989
+ DELETING = "DELETING",
990
+ FAILED = "FAILED",
991
+ UPDATING = "UPDATING",
992
+ }
993
+ export interface FlywheelProperties {
994
+ FlywheelArn?: string;
995
+ ActiveModelArn?: string;
996
+ DataAccessRoleArn?: string;
997
+ TaskConfig?: TaskConfig;
998
+ DataLakeS3Uri?: string;
999
+ DataSecurityConfig?: DataSecurityConfig;
1000
+ Status?: FlywheelStatus | string;
1001
+ ModelType?: ModelType | string;
1002
+ Message?: string;
1003
+ CreationTime?: Date;
1004
+ LastModifiedTime?: Date;
1005
+ LatestFlywheelIteration?: string;
1006
+ }
1007
+ export interface DescribeFlywheelResponse {
1008
+ FlywheelProperties?: FlywheelProperties;
1009
+ }
1010
+ export interface DescribeFlywheelIterationRequest {
1011
+ FlywheelArn: string | undefined;
1012
+ FlywheelIterationId: string | undefined;
1013
+ }
1014
+ export interface FlywheelModelEvaluationMetrics {
1015
+ AverageF1Score?: number;
1016
+ AveragePrecision?: number;
1017
+ AverageRecall?: number;
1018
+ AverageAccuracy?: number;
1019
+ }
1020
+ export declare enum FlywheelIterationStatus {
1021
+ COMPLETED = "COMPLETED",
1022
+ EVALUATING = "EVALUATING",
1023
+ FAILED = "FAILED",
1024
+ STOPPED = "STOPPED",
1025
+ STOP_REQUESTED = "STOP_REQUESTED",
1026
+ TRAINING = "TRAINING",
1027
+ }
1028
+ export interface FlywheelIterationProperties {
1029
+ FlywheelArn?: string;
1030
+ FlywheelIterationId?: string;
1031
+ CreationTime?: Date;
1032
+ EndTime?: Date;
1033
+ Status?: FlywheelIterationStatus | string;
1034
+ Message?: string;
1035
+ EvaluatedModelArn?: string;
1036
+ EvaluatedModelMetrics?: FlywheelModelEvaluationMetrics;
1037
+ TrainedModelArn?: string;
1038
+ TrainedModelMetrics?: FlywheelModelEvaluationMetrics;
1039
+ EvaluationManifestS3Prefix?: string;
1040
+ }
1041
+ export interface DescribeFlywheelIterationResponse {
1042
+ FlywheelIterationProperties?: FlywheelIterationProperties;
1043
+ }
856
1044
  export interface DescribeKeyPhrasesDetectionJobRequest {
857
1045
  JobId: string | undefined;
858
1046
  }
@@ -1065,6 +1253,22 @@ export declare class InvalidFilterException extends __BaseException {
1065
1253
  opts: __ExceptionOptionType<InvalidFilterException, __BaseException>
1066
1254
  );
1067
1255
  }
1256
+ export interface DatasetFilter {
1257
+ Status?: DatasetStatus | string;
1258
+ DatasetType?: DatasetType | string;
1259
+ CreationTimeAfter?: Date;
1260
+ CreationTimeBefore?: Date;
1261
+ }
1262
+ export interface ListDatasetsRequest {
1263
+ FlywheelArn?: string;
1264
+ Filter?: DatasetFilter;
1265
+ NextToken?: string;
1266
+ MaxResults?: number;
1267
+ }
1268
+ export interface ListDatasetsResponse {
1269
+ DatasetPropertiesList?: DatasetProperties[];
1270
+ NextToken?: string;
1271
+ }
1068
1272
  export interface DocumentClassificationJobFilter {
1069
1273
  JobName?: string;
1070
1274
  JobStatus?: JobStatus | string;
@@ -1200,6 +1404,45 @@ export interface ListEventsDetectionJobsResponse {
1200
1404
  EventsDetectionJobPropertiesList?: EventsDetectionJobProperties[];
1201
1405
  NextToken?: string;
1202
1406
  }
1407
+ export interface FlywheelIterationFilter {
1408
+ CreationTimeAfter?: Date;
1409
+ CreationTimeBefore?: Date;
1410
+ }
1411
+ export interface ListFlywheelIterationHistoryRequest {
1412
+ FlywheelArn: string | undefined;
1413
+ Filter?: FlywheelIterationFilter;
1414
+ NextToken?: string;
1415
+ MaxResults?: number;
1416
+ }
1417
+ export interface ListFlywheelIterationHistoryResponse {
1418
+ FlywheelIterationPropertiesList?: FlywheelIterationProperties[];
1419
+ NextToken?: string;
1420
+ }
1421
+ export interface FlywheelFilter {
1422
+ Status?: FlywheelStatus | string;
1423
+ CreationTimeAfter?: Date;
1424
+ CreationTimeBefore?: Date;
1425
+ }
1426
+ export interface ListFlywheelsRequest {
1427
+ Filter?: FlywheelFilter;
1428
+ NextToken?: string;
1429
+ MaxResults?: number;
1430
+ }
1431
+ export interface FlywheelSummary {
1432
+ FlywheelArn?: string;
1433
+ ActiveModelArn?: string;
1434
+ DataLakeS3Uri?: string;
1435
+ Status?: FlywheelStatus | string;
1436
+ ModelType?: ModelType | string;
1437
+ Message?: string;
1438
+ CreationTime?: Date;
1439
+ LastModifiedTime?: Date;
1440
+ LatestFlywheelIteration?: string;
1441
+ }
1442
+ export interface ListFlywheelsResponse {
1443
+ FlywheelSummaryList?: FlywheelSummary[];
1444
+ NextToken?: string;
1445
+ }
1203
1446
  export interface KeyPhrasesDetectionJobFilter {
1204
1447
  JobName?: string;
1205
1448
  JobStatus?: JobStatus | string;
@@ -1292,7 +1535,7 @@ export interface PutResourcePolicyResponse {
1292
1535
  }
1293
1536
  export interface StartDocumentClassificationJobRequest {
1294
1537
  JobName?: string;
1295
- DocumentClassifierArn: string | undefined;
1538
+ DocumentClassifierArn?: string;
1296
1539
  InputDataConfig: InputDataConfig | undefined;
1297
1540
  OutputDataConfig: OutputDataConfig | undefined;
1298
1541
  DataAccessRoleArn: string | undefined;
@@ -1300,11 +1543,13 @@ export interface StartDocumentClassificationJobRequest {
1300
1543
  VolumeKmsKeyId?: string;
1301
1544
  VpcConfig?: VpcConfig;
1302
1545
  Tags?: Tag[];
1546
+ FlywheelArn?: string;
1303
1547
  }
1304
1548
  export interface StartDocumentClassificationJobResponse {
1305
1549
  JobId?: string;
1306
1550
  JobArn?: string;
1307
1551
  JobStatus?: JobStatus | string;
1552
+ DocumentClassifierArn?: string;
1308
1553
  }
1309
1554
  export interface StartDominantLanguageDetectionJobRequest {
1310
1555
  InputDataConfig: InputDataConfig | undefined;
@@ -1332,11 +1577,13 @@ export interface StartEntitiesDetectionJobRequest {
1332
1577
  VolumeKmsKeyId?: string;
1333
1578
  VpcConfig?: VpcConfig;
1334
1579
  Tags?: Tag[];
1580
+ FlywheelArn?: string;
1335
1581
  }
1336
1582
  export interface StartEntitiesDetectionJobResponse {
1337
1583
  JobId?: string;
1338
1584
  JobArn?: string;
1339
1585
  JobStatus?: JobStatus | string;
1586
+ EntityRecognizerArn?: string;
1340
1587
  }
1341
1588
  export interface StartEventsDetectionJobRequest {
1342
1589
  InputDataConfig: InputDataConfig | undefined;
@@ -1353,6 +1600,14 @@ export interface StartEventsDetectionJobResponse {
1353
1600
  JobArn?: string;
1354
1601
  JobStatus?: JobStatus | string;
1355
1602
  }
1603
+ export interface StartFlywheelIterationRequest {
1604
+ FlywheelArn: string | undefined;
1605
+ ClientRequestToken?: string;
1606
+ }
1607
+ export interface StartFlywheelIterationResponse {
1608
+ FlywheelArn?: string;
1609
+ FlywheelIterationId?: string;
1610
+ }
1356
1611
  export interface StartKeyPhrasesDetectionJobRequest {
1357
1612
  InputDataConfig: InputDataConfig | undefined;
1358
1613
  OutputDataConfig: OutputDataConfig | undefined;
@@ -1475,57 +1730,6 @@ export interface StopSentimentDetectionJobResponse {
1475
1730
  JobId?: string;
1476
1731
  JobStatus?: JobStatus | string;
1477
1732
  }
1478
- export interface StopTargetedSentimentDetectionJobRequest {
1479
- JobId: string | undefined;
1480
- }
1481
- export interface StopTargetedSentimentDetectionJobResponse {
1482
- JobId?: string;
1483
- JobStatus?: JobStatus | string;
1484
- }
1485
- export interface StopTrainingDocumentClassifierRequest {
1486
- DocumentClassifierArn: string | undefined;
1487
- }
1488
- export interface StopTrainingDocumentClassifierResponse {}
1489
- export interface StopTrainingEntityRecognizerRequest {
1490
- EntityRecognizerArn: string | undefined;
1491
- }
1492
- export interface StopTrainingEntityRecognizerResponse {}
1493
- export declare class ConcurrentModificationException extends __BaseException {
1494
- readonly name: "ConcurrentModificationException";
1495
- readonly $fault: "client";
1496
- Message?: string;
1497
- constructor(
1498
- opts: __ExceptionOptionType<
1499
- ConcurrentModificationException,
1500
- __BaseException
1501
- >
1502
- );
1503
- }
1504
- export interface TagResourceRequest {
1505
- ResourceArn: string | undefined;
1506
- Tags: Tag[] | undefined;
1507
- }
1508
- export interface TagResourceResponse {}
1509
- export declare class TooManyTagKeysException extends __BaseException {
1510
- readonly name: "TooManyTagKeysException";
1511
- readonly $fault: "client";
1512
- Message?: string;
1513
- constructor(
1514
- opts: __ExceptionOptionType<TooManyTagKeysException, __BaseException>
1515
- );
1516
- }
1517
- export interface UntagResourceRequest {
1518
- ResourceArn: string | undefined;
1519
- TagKeys: string[] | undefined;
1520
- }
1521
- export interface UntagResourceResponse {}
1522
- export interface UpdateEndpointRequest {
1523
- EndpointArn: string | undefined;
1524
- DesiredModelArn?: string;
1525
- DesiredInferenceUnits?: number;
1526
- DesiredDataAccessRoleArn?: string;
1527
- }
1528
- export interface UpdateEndpointResponse {}
1529
1733
  export declare const AugmentedManifestsListItemFilterSensitiveLog: (
1530
1734
  obj: AugmentedManifestsListItem
1531
1735
  ) => any;
@@ -1661,13 +1865,40 @@ export declare const EntityLabelFilterSensitiveLog: (obj: EntityLabel) => any;
1661
1865
  export declare const ContainsPiiEntitiesResponseFilterSensitiveLog: (
1662
1866
  obj: ContainsPiiEntitiesResponse
1663
1867
  ) => any;
1868
+ export declare const DatasetAugmentedManifestsListItemFilterSensitiveLog: (
1869
+ obj: DatasetAugmentedManifestsListItem
1870
+ ) => any;
1871
+ export declare const DatasetDocumentClassifierInputDataConfigFilterSensitiveLog: (
1872
+ obj: DatasetDocumentClassifierInputDataConfig
1873
+ ) => any;
1874
+ export declare const DatasetEntityRecognizerAnnotationsFilterSensitiveLog: (
1875
+ obj: DatasetEntityRecognizerAnnotations
1876
+ ) => any;
1877
+ export declare const DatasetEntityRecognizerDocumentsFilterSensitiveLog: (
1878
+ obj: DatasetEntityRecognizerDocuments
1879
+ ) => any;
1880
+ export declare const DatasetEntityRecognizerEntityListFilterSensitiveLog: (
1881
+ obj: DatasetEntityRecognizerEntityList
1882
+ ) => any;
1883
+ export declare const DatasetEntityRecognizerInputDataConfigFilterSensitiveLog: (
1884
+ obj: DatasetEntityRecognizerInputDataConfig
1885
+ ) => any;
1886
+ export declare const DatasetInputDataConfigFilterSensitiveLog: (
1887
+ obj: DatasetInputDataConfig
1888
+ ) => any;
1889
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1890
+ export declare const CreateDatasetRequestFilterSensitiveLog: (
1891
+ obj: CreateDatasetRequest
1892
+ ) => any;
1893
+ export declare const CreateDatasetResponseFilterSensitiveLog: (
1894
+ obj: CreateDatasetResponse
1895
+ ) => any;
1664
1896
  export declare const DocumentClassifierInputDataConfigFilterSensitiveLog: (
1665
1897
  obj: DocumentClassifierInputDataConfig
1666
1898
  ) => any;
1667
1899
  export declare const DocumentClassifierOutputDataConfigFilterSensitiveLog: (
1668
1900
  obj: DocumentClassifierOutputDataConfig
1669
1901
  ) => any;
1670
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1671
1902
  export declare const VpcConfigFilterSensitiveLog: (obj: VpcConfig) => any;
1672
1903
  export declare const CreateDocumentClassifierRequestFilterSensitiveLog: (
1673
1904
  obj: CreateDocumentClassifierRequest
@@ -1702,6 +1933,22 @@ export declare const CreateEntityRecognizerRequestFilterSensitiveLog: (
1702
1933
  export declare const CreateEntityRecognizerResponseFilterSensitiveLog: (
1703
1934
  obj: CreateEntityRecognizerResponse
1704
1935
  ) => any;
1936
+ export declare const DataSecurityConfigFilterSensitiveLog: (
1937
+ obj: DataSecurityConfig
1938
+ ) => any;
1939
+ export declare const DocumentClassificationConfigFilterSensitiveLog: (
1940
+ obj: DocumentClassificationConfig
1941
+ ) => any;
1942
+ export declare const EntityRecognitionConfigFilterSensitiveLog: (
1943
+ obj: EntityRecognitionConfig
1944
+ ) => any;
1945
+ export declare const TaskConfigFilterSensitiveLog: (obj: TaskConfig) => any;
1946
+ export declare const CreateFlywheelRequestFilterSensitiveLog: (
1947
+ obj: CreateFlywheelRequest
1948
+ ) => any;
1949
+ export declare const CreateFlywheelResponseFilterSensitiveLog: (
1950
+ obj: CreateFlywheelResponse
1951
+ ) => any;
1705
1952
  export declare const DeleteDocumentClassifierRequestFilterSensitiveLog: (
1706
1953
  obj: DeleteDocumentClassifierRequest
1707
1954
  ) => any;
@@ -1720,12 +1967,27 @@ export declare const DeleteEntityRecognizerRequestFilterSensitiveLog: (
1720
1967
  export declare const DeleteEntityRecognizerResponseFilterSensitiveLog: (
1721
1968
  obj: DeleteEntityRecognizerResponse
1722
1969
  ) => any;
1970
+ export declare const DeleteFlywheelRequestFilterSensitiveLog: (
1971
+ obj: DeleteFlywheelRequest
1972
+ ) => any;
1973
+ export declare const DeleteFlywheelResponseFilterSensitiveLog: (
1974
+ obj: DeleteFlywheelResponse
1975
+ ) => any;
1723
1976
  export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (
1724
1977
  obj: DeleteResourcePolicyRequest
1725
1978
  ) => any;
1726
1979
  export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (
1727
1980
  obj: DeleteResourcePolicyResponse
1728
1981
  ) => any;
1982
+ export declare const DescribeDatasetRequestFilterSensitiveLog: (
1983
+ obj: DescribeDatasetRequest
1984
+ ) => any;
1985
+ export declare const DatasetPropertiesFilterSensitiveLog: (
1986
+ obj: DatasetProperties
1987
+ ) => any;
1988
+ export declare const DescribeDatasetResponseFilterSensitiveLog: (
1989
+ obj: DescribeDatasetResponse
1990
+ ) => any;
1729
1991
  export declare const DescribeDocumentClassificationJobRequestFilterSensitiveLog: (
1730
1992
  obj: DescribeDocumentClassificationJobRequest
1731
1993
  ) => any;
@@ -1780,6 +2042,9 @@ export declare const DescribeEntitiesDetectionJobResponseFilterSensitiveLog: (
1780
2042
  export declare const DescribeEntityRecognizerRequestFilterSensitiveLog: (
1781
2043
  obj: DescribeEntityRecognizerRequest
1782
2044
  ) => any;
2045
+ export declare const EntityRecognizerOutputDataConfigFilterSensitiveLog: (
2046
+ obj: EntityRecognizerOutputDataConfig
2047
+ ) => any;
1783
2048
  export declare const EntityTypesEvaluationMetricsFilterSensitiveLog: (
1784
2049
  obj: EntityTypesEvaluationMetrics
1785
2050
  ) => any;
@@ -1807,6 +2072,27 @@ export declare const EventsDetectionJobPropertiesFilterSensitiveLog: (
1807
2072
  export declare const DescribeEventsDetectionJobResponseFilterSensitiveLog: (
1808
2073
  obj: DescribeEventsDetectionJobResponse
1809
2074
  ) => any;
2075
+ export declare const DescribeFlywheelRequestFilterSensitiveLog: (
2076
+ obj: DescribeFlywheelRequest
2077
+ ) => any;
2078
+ export declare const FlywheelPropertiesFilterSensitiveLog: (
2079
+ obj: FlywheelProperties
2080
+ ) => any;
2081
+ export declare const DescribeFlywheelResponseFilterSensitiveLog: (
2082
+ obj: DescribeFlywheelResponse
2083
+ ) => any;
2084
+ export declare const DescribeFlywheelIterationRequestFilterSensitiveLog: (
2085
+ obj: DescribeFlywheelIterationRequest
2086
+ ) => any;
2087
+ export declare const FlywheelModelEvaluationMetricsFilterSensitiveLog: (
2088
+ obj: FlywheelModelEvaluationMetrics
2089
+ ) => any;
2090
+ export declare const FlywheelIterationPropertiesFilterSensitiveLog: (
2091
+ obj: FlywheelIterationProperties
2092
+ ) => any;
2093
+ export declare const DescribeFlywheelIterationResponseFilterSensitiveLog: (
2094
+ obj: DescribeFlywheelIterationResponse
2095
+ ) => any;
1810
2096
  export declare const DescribeKeyPhrasesDetectionJobRequestFilterSensitiveLog: (
1811
2097
  obj: DescribeKeyPhrasesDetectionJobRequest
1812
2098
  ) => any;
@@ -1913,6 +2199,15 @@ export declare const ImportModelRequestFilterSensitiveLog: (
1913
2199
  export declare const ImportModelResponseFilterSensitiveLog: (
1914
2200
  obj: ImportModelResponse
1915
2201
  ) => any;
2202
+ export declare const DatasetFilterFilterSensitiveLog: (
2203
+ obj: DatasetFilter
2204
+ ) => any;
2205
+ export declare const ListDatasetsRequestFilterSensitiveLog: (
2206
+ obj: ListDatasetsRequest
2207
+ ) => any;
2208
+ export declare const ListDatasetsResponseFilterSensitiveLog: (
2209
+ obj: ListDatasetsResponse
2210
+ ) => any;
1916
2211
  export declare const DocumentClassificationJobFilterFilterSensitiveLog: (
1917
2212
  obj: DocumentClassificationJobFilter
1918
2213
  ) => any;
@@ -1994,6 +2289,27 @@ export declare const ListEventsDetectionJobsRequestFilterSensitiveLog: (
1994
2289
  export declare const ListEventsDetectionJobsResponseFilterSensitiveLog: (
1995
2290
  obj: ListEventsDetectionJobsResponse
1996
2291
  ) => any;
2292
+ export declare const FlywheelIterationFilterFilterSensitiveLog: (
2293
+ obj: FlywheelIterationFilter
2294
+ ) => any;
2295
+ export declare const ListFlywheelIterationHistoryRequestFilterSensitiveLog: (
2296
+ obj: ListFlywheelIterationHistoryRequest
2297
+ ) => any;
2298
+ export declare const ListFlywheelIterationHistoryResponseFilterSensitiveLog: (
2299
+ obj: ListFlywheelIterationHistoryResponse
2300
+ ) => any;
2301
+ export declare const FlywheelFilterFilterSensitiveLog: (
2302
+ obj: FlywheelFilter
2303
+ ) => any;
2304
+ export declare const ListFlywheelsRequestFilterSensitiveLog: (
2305
+ obj: ListFlywheelsRequest
2306
+ ) => any;
2307
+ export declare const FlywheelSummaryFilterSensitiveLog: (
2308
+ obj: FlywheelSummary
2309
+ ) => any;
2310
+ export declare const ListFlywheelsResponseFilterSensitiveLog: (
2311
+ obj: ListFlywheelsResponse
2312
+ ) => any;
1997
2313
  export declare const KeyPhrasesDetectionJobFilterFilterSensitiveLog: (
1998
2314
  obj: KeyPhrasesDetectionJobFilter
1999
2315
  ) => any;
@@ -2075,6 +2391,12 @@ export declare const StartEventsDetectionJobRequestFilterSensitiveLog: (
2075
2391
  export declare const StartEventsDetectionJobResponseFilterSensitiveLog: (
2076
2392
  obj: StartEventsDetectionJobResponse
2077
2393
  ) => any;
2394
+ export declare const StartFlywheelIterationRequestFilterSensitiveLog: (
2395
+ obj: StartFlywheelIterationRequest
2396
+ ) => any;
2397
+ export declare const StartFlywheelIterationResponseFilterSensitiveLog: (
2398
+ obj: StartFlywheelIterationResponse
2399
+ ) => any;
2078
2400
  export declare const StartKeyPhrasesDetectionJobRequestFilterSensitiveLog: (
2079
2401
  obj: StartKeyPhrasesDetectionJobRequest
2080
2402
  ) => any;
@@ -2141,39 +2463,3 @@ export declare const StopSentimentDetectionJobRequestFilterSensitiveLog: (
2141
2463
  export declare const StopSentimentDetectionJobResponseFilterSensitiveLog: (
2142
2464
  obj: StopSentimentDetectionJobResponse
2143
2465
  ) => any;
2144
- export declare const StopTargetedSentimentDetectionJobRequestFilterSensitiveLog: (
2145
- obj: StopTargetedSentimentDetectionJobRequest
2146
- ) => any;
2147
- export declare const StopTargetedSentimentDetectionJobResponseFilterSensitiveLog: (
2148
- obj: StopTargetedSentimentDetectionJobResponse
2149
- ) => any;
2150
- export declare const StopTrainingDocumentClassifierRequestFilterSensitiveLog: (
2151
- obj: StopTrainingDocumentClassifierRequest
2152
- ) => any;
2153
- export declare const StopTrainingDocumentClassifierResponseFilterSensitiveLog: (
2154
- obj: StopTrainingDocumentClassifierResponse
2155
- ) => any;
2156
- export declare const StopTrainingEntityRecognizerRequestFilterSensitiveLog: (
2157
- obj: StopTrainingEntityRecognizerRequest
2158
- ) => any;
2159
- export declare const StopTrainingEntityRecognizerResponseFilterSensitiveLog: (
2160
- obj: StopTrainingEntityRecognizerResponse
2161
- ) => any;
2162
- export declare const TagResourceRequestFilterSensitiveLog: (
2163
- obj: TagResourceRequest
2164
- ) => any;
2165
- export declare const TagResourceResponseFilterSensitiveLog: (
2166
- obj: TagResourceResponse
2167
- ) => any;
2168
- export declare const UntagResourceRequestFilterSensitiveLog: (
2169
- obj: UntagResourceRequest
2170
- ) => any;
2171
- export declare const UntagResourceResponseFilterSensitiveLog: (
2172
- obj: UntagResourceResponse
2173
- ) => any;
2174
- export declare const UpdateEndpointRequestFilterSensitiveLog: (
2175
- obj: UpdateEndpointRequest
2176
- ) => any;
2177
- export declare const UpdateEndpointResponseFilterSensitiveLog: (
2178
- obj: UpdateEndpointResponse
2179
- ) => any;