NAME
Paws::Comprehend - Perl Interface to AWS Amazon Comprehend
SYNOPSIS
use Paws;
my $obj = Paws->service('Comprehend');
my $res = $obj->Method(
Arg1 => $val1,
Arg2 => [ 'V1', 'V2' ],
# if Arg3 is an object, the HashRef will be used as arguments to the constructor
# of the arguments type
Arg3 => { Att1 => 'Val1' },
# if Arg4 is an array of objects, the HashRefs will be passed as arguments to
# the constructor of the arguments type
Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ],
);
DESCRIPTION
Amazon Comprehend is an AWS service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, the predominant sentiment expressed in them, the predominant language used, and more.
For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/comprehend-2017-11-27
METHODS
BatchDetectDominantLanguage
Each argument is described in detail in: Paws::Comprehend::BatchDetectDominantLanguage
Returns: a Paws::Comprehend::BatchDetectDominantLanguageResponse instance
Determines the dominant language of the input text for a batch of documents. For a list of languages that Amazon Comprehend can detect, see Amazon Comprehend Supported Languages (https://docs.aws.amazon.com/comprehend/latest/dg/how-languages.html).
BatchDetectEntities
Each argument is described in detail in: Paws::Comprehend::BatchDetectEntities
Returns: a Paws::Comprehend::BatchDetectEntitiesResponse instance
Inspects the text of a batch of documents for named entities and returns information about them. For more information about named entities, see how-entities
BatchDetectKeyPhrases
Each argument is described in detail in: Paws::Comprehend::BatchDetectKeyPhrases
Returns: a Paws::Comprehend::BatchDetectKeyPhrasesResponse instance
Detects the key noun phrases found in a batch of documents.
BatchDetectSentiment
Each argument is described in detail in: Paws::Comprehend::BatchDetectSentiment
Returns: a Paws::Comprehend::BatchDetectSentimentResponse instance
Inspects a batch of documents and returns an inference of the prevailing sentiment, POSITIVE
, NEUTRAL
, MIXED
, or NEGATIVE
, in each one.
BatchDetectSyntax
Each argument is described in detail in: Paws::Comprehend::BatchDetectSyntax
Returns: a Paws::Comprehend::BatchDetectSyntaxResponse instance
Inspects the text of a batch of documents for the syntax and part of speech of the words in the document and returns information about them. For more information, see how-syntax.
ClassifyDocument
Each argument is described in detail in: Paws::Comprehend::ClassifyDocument
Returns: a Paws::Comprehend::ClassifyDocumentResponse instance
Creates a new document classification request to analyze a single document in real-time, using a previously created and trained custom model and an endpoint.
ContainsPiiEntities
Each argument is described in detail in: Paws::Comprehend::ContainsPiiEntities
Returns: a Paws::Comprehend::ContainsPiiEntitiesResponse instance
Analyzes input text for the presence of personally identifiable information (PII) and returns the labels of identified PII entity types such as name, address, bank account number, or phone number.
CreateDocumentClassifier
- DataAccessRoleArn => Str
- DocumentClassifierName => Str
- InputDataConfig => Paws::Comprehend::DocumentClassifierInputDataConfig
- LanguageCode => Str
- [ClientRequestToken => Str]
- [Mode => Str]
- [ModelKmsKeyId => Str]
- [OutputDataConfig => Paws::Comprehend::DocumentClassifierOutputDataConfig]
- [Tags => ArrayRef[Paws::Comprehend::Tag]]
- [VolumeKmsKeyId => Str]
- [VpcConfig => Paws::Comprehend::VpcConfig]
Each argument is described in detail in: Paws::Comprehend::CreateDocumentClassifier
Returns: a Paws::Comprehend::CreateDocumentClassifierResponse instance
Creates a new document classifier that you can use to categorize documents. To create a classifier, you provide a set of training documents that labeled with the categories that you want to use. After the classifier is trained you can use it to categorize a set of labeled documents into the categories. For more information, see how-document-classification.
CreateEndpoint
- DesiredInferenceUnits => Int
- EndpointName => Str
- ModelArn => Str
- [ClientRequestToken => Str]
- [DataAccessRoleArn => Str]
- [Tags => ArrayRef[Paws::Comprehend::Tag]]
Each argument is described in detail in: Paws::Comprehend::CreateEndpoint
Returns: a Paws::Comprehend::CreateEndpointResponse instance
Creates a model-specific endpoint for synchronous inference for a previously trained custom model
CreateEntityRecognizer
- DataAccessRoleArn => Str
- InputDataConfig => Paws::Comprehend::EntityRecognizerInputDataConfig
- LanguageCode => Str
- RecognizerName => Str
- [ClientRequestToken => Str]
- [ModelKmsKeyId => Str]
- [Tags => ArrayRef[Paws::Comprehend::Tag]]
- [VolumeKmsKeyId => Str]
- [VpcConfig => Paws::Comprehend::VpcConfig]
Each argument is described in detail in: Paws::Comprehend::CreateEntityRecognizer
Returns: a Paws::Comprehend::CreateEntityRecognizerResponse instance
Creates an entity recognizer using submitted files. After your CreateEntityRecognizer
request is submitted, you can check job status using the API.
DeleteDocumentClassifier
Each argument is described in detail in: Paws::Comprehend::DeleteDocumentClassifier
Returns: a Paws::Comprehend::DeleteDocumentClassifierResponse instance
Deletes a previously created document classifier
Only those classifiers that are in terminated states (IN_ERROR, TRAINED) will be deleted. If an active inference job is using the model, a ResourceInUseException
will be returned.
This is an asynchronous action that puts the classifier into a DELETING state, and it is then removed by a background job. Once removed, the classifier disappears from your account and is no longer available for use.
DeleteEndpoint
Each argument is described in detail in: Paws::Comprehend::DeleteEndpoint
Returns: a Paws::Comprehend::DeleteEndpointResponse instance
Deletes a model-specific endpoint for a previously-trained custom model. All endpoints must be deleted in order for the model to be deleted.
DeleteEntityRecognizer
Each argument is described in detail in: Paws::Comprehend::DeleteEntityRecognizer
Returns: a Paws::Comprehend::DeleteEntityRecognizerResponse instance
Deletes an entity recognizer.
Only those recognizers that are in terminated states (IN_ERROR, TRAINED) will be deleted. If an active inference job is using the model, a ResourceInUseException
will be returned.
This is an asynchronous action that puts the recognizer into a DELETING state, and it is then removed by a background job. Once removed, the recognizer disappears from your account and is no longer available for use.
DescribeDocumentClassificationJob
Each argument is described in detail in: Paws::Comprehend::DescribeDocumentClassificationJob
Returns: a Paws::Comprehend::DescribeDocumentClassificationJobResponse instance
Gets the properties associated with a document classification job. Use this operation to get the status of a classification job.
DescribeDocumentClassifier
Each argument is described in detail in: Paws::Comprehend::DescribeDocumentClassifier
Returns: a Paws::Comprehend::DescribeDocumentClassifierResponse instance
Gets the properties associated with a document classifier.
DescribeDominantLanguageDetectionJob
Each argument is described in detail in: Paws::Comprehend::DescribeDominantLanguageDetectionJob
Returns: a Paws::Comprehend::DescribeDominantLanguageDetectionJobResponse instance
Gets the properties associated with a dominant language detection job. Use this operation to get the status of a detection job.
DescribeEndpoint
Each argument is described in detail in: Paws::Comprehend::DescribeEndpoint
Returns: a Paws::Comprehend::DescribeEndpointResponse instance
Gets the properties associated with a specific endpoint. Use this operation to get the status of an endpoint.
DescribeEntitiesDetectionJob
Each argument is described in detail in: Paws::Comprehend::DescribeEntitiesDetectionJob
Returns: a Paws::Comprehend::DescribeEntitiesDetectionJobResponse instance
Gets the properties associated with an entities detection job. Use this operation to get the status of a detection job.
DescribeEntityRecognizer
Each argument is described in detail in: Paws::Comprehend::DescribeEntityRecognizer
Returns: a Paws::Comprehend::DescribeEntityRecognizerResponse instance
Provides details about an entity recognizer including status, S3 buckets containing training data, recognizer metadata, metrics, and so on.
DescribeEventsDetectionJob
Each argument is described in detail in: Paws::Comprehend::DescribeEventsDetectionJob
Returns: a Paws::Comprehend::DescribeEventsDetectionJobResponse instance
Gets the status and details of an events detection job.
DescribeKeyPhrasesDetectionJob
Each argument is described in detail in: Paws::Comprehend::DescribeKeyPhrasesDetectionJob
Returns: a Paws::Comprehend::DescribeKeyPhrasesDetectionJobResponse instance
Gets the properties associated with a key phrases detection job. Use this operation to get the status of a detection job.
DescribePiiEntitiesDetectionJob
Each argument is described in detail in: Paws::Comprehend::DescribePiiEntitiesDetectionJob
Returns: a Paws::Comprehend::DescribePiiEntitiesDetectionJobResponse instance
Gets the properties associated with a PII entities detection job. For example, you can use this operation to get the job status.
DescribeSentimentDetectionJob
Each argument is described in detail in: Paws::Comprehend::DescribeSentimentDetectionJob
Returns: a Paws::Comprehend::DescribeSentimentDetectionJobResponse instance
Gets the properties associated with a sentiment detection job. Use this operation to get the status of a detection job.
DescribeTopicsDetectionJob
Each argument is described in detail in: Paws::Comprehend::DescribeTopicsDetectionJob
Returns: a Paws::Comprehend::DescribeTopicsDetectionJobResponse instance
Gets the properties associated with a topic detection job. Use this operation to get the status of a detection job.
DetectDominantLanguage
Each argument is described in detail in: Paws::Comprehend::DetectDominantLanguage
Returns: a Paws::Comprehend::DetectDominantLanguageResponse instance
Determines the dominant language of the input text. For a list of languages that Amazon Comprehend can detect, see Amazon Comprehend Supported Languages (https://docs.aws.amazon.com/comprehend/latest/dg/how-languages.html).
DetectEntities
Each argument is described in detail in: Paws::Comprehend::DetectEntities
Returns: a Paws::Comprehend::DetectEntitiesResponse instance
Inspects text for named entities, and returns information about them. For more information, about named entities, see how-entities.
DetectKeyPhrases
Each argument is described in detail in: Paws::Comprehend::DetectKeyPhrases
Returns: a Paws::Comprehend::DetectKeyPhrasesResponse instance
Detects the key noun phrases found in the text.
DetectPiiEntities
Each argument is described in detail in: Paws::Comprehend::DetectPiiEntities
Returns: a Paws::Comprehend::DetectPiiEntitiesResponse instance
Inspects the input text for entities that contain personally identifiable information (PII) and returns information about them.
DetectSentiment
Each argument is described in detail in: Paws::Comprehend::DetectSentiment
Returns: a Paws::Comprehend::DetectSentimentResponse instance
Inspects text and returns an inference of the prevailing sentiment (POSITIVE
, NEUTRAL
, MIXED
, or NEGATIVE
).
DetectSyntax
Each argument is described in detail in: Paws::Comprehend::DetectSyntax
Returns: a Paws::Comprehend::DetectSyntaxResponse instance
Inspects text for syntax and the part of speech of words in the document. For more information, how-syntax.
ListDocumentClassificationJobs
- [Filter => Paws::Comprehend::DocumentClassificationJobFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListDocumentClassificationJobs
Returns: a Paws::Comprehend::ListDocumentClassificationJobsResponse instance
Gets a list of the documentation classification jobs that you have submitted.
ListDocumentClassifiers
- [Filter => Paws::Comprehend::DocumentClassifierFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListDocumentClassifiers
Returns: a Paws::Comprehend::ListDocumentClassifiersResponse instance
Gets a list of the document classifiers that you have created.
ListDominantLanguageDetectionJobs
- [Filter => Paws::Comprehend::DominantLanguageDetectionJobFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListDominantLanguageDetectionJobs
Returns: a Paws::Comprehend::ListDominantLanguageDetectionJobsResponse instance
Gets a list of the dominant language detection jobs that you have submitted.
ListEndpoints
- [Filter => Paws::Comprehend::EndpointFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListEndpoints
Returns: a Paws::Comprehend::ListEndpointsResponse instance
Gets a list of all existing endpoints that you've created.
ListEntitiesDetectionJobs
- [Filter => Paws::Comprehend::EntitiesDetectionJobFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListEntitiesDetectionJobs
Returns: a Paws::Comprehend::ListEntitiesDetectionJobsResponse instance
Gets a list of the entity detection jobs that you have submitted.
ListEntityRecognizers
- [Filter => Paws::Comprehend::EntityRecognizerFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListEntityRecognizers
Returns: a Paws::Comprehend::ListEntityRecognizersResponse instance
Gets a list of the properties of all entity recognizers that you created, including recognizers currently in training. Allows you to filter the list of recognizers based on criteria such as status and submission time. This call returns up to 500 entity recognizers in the list, with a default number of 100 recognizers in the list.
The results of this list are not in any particular order. Please get the list and sort locally if needed.
ListEventsDetectionJobs
- [Filter => Paws::Comprehend::EventsDetectionJobFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListEventsDetectionJobs
Returns: a Paws::Comprehend::ListEventsDetectionJobsResponse instance
Gets a list of the events detection jobs that you have submitted.
ListKeyPhrasesDetectionJobs
- [Filter => Paws::Comprehend::KeyPhrasesDetectionJobFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListKeyPhrasesDetectionJobs
Returns: a Paws::Comprehend::ListKeyPhrasesDetectionJobsResponse instance
Get a list of key phrase detection jobs that you have submitted.
ListPiiEntitiesDetectionJobs
- [Filter => Paws::Comprehend::PiiEntitiesDetectionJobFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListPiiEntitiesDetectionJobs
Returns: a Paws::Comprehend::ListPiiEntitiesDetectionJobsResponse instance
Gets a list of the PII entity detection jobs that you have submitted.
ListSentimentDetectionJobs
- [Filter => Paws::Comprehend::SentimentDetectionJobFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListSentimentDetectionJobs
Returns: a Paws::Comprehend::ListSentimentDetectionJobsResponse instance
Gets a list of sentiment detection jobs that you have submitted.
ListTagsForResource
Each argument is described in detail in: Paws::Comprehend::ListTagsForResource
Returns: a Paws::Comprehend::ListTagsForResourceResponse instance
Lists all tags associated with a given Amazon Comprehend resource.
ListTopicsDetectionJobs
- [Filter => Paws::Comprehend::TopicsDetectionJobFilter]
- [MaxResults => Int]
- [NextToken => Str]
Each argument is described in detail in: Paws::Comprehend::ListTopicsDetectionJobs
Returns: a Paws::Comprehend::ListTopicsDetectionJobsResponse instance
Gets a list of the topic detection jobs that you have submitted.
StartDocumentClassificationJob
- DataAccessRoleArn => Str
- DocumentClassifierArn => Str
- InputDataConfig => Paws::Comprehend::InputDataConfig
- OutputDataConfig => Paws::Comprehend::OutputDataConfig
- [ClientRequestToken => Str]
- [JobName => Str]
- [VolumeKmsKeyId => Str]
- [VpcConfig => Paws::Comprehend::VpcConfig]
Each argument is described in detail in: Paws::Comprehend::StartDocumentClassificationJob
Returns: a Paws::Comprehend::StartDocumentClassificationJobResponse instance
Starts an asynchronous document classification job. Use the operation to track the progress of the job.
StartDominantLanguageDetectionJob
- DataAccessRoleArn => Str
- InputDataConfig => Paws::Comprehend::InputDataConfig
- OutputDataConfig => Paws::Comprehend::OutputDataConfig
- [ClientRequestToken => Str]
- [JobName => Str]
- [VolumeKmsKeyId => Str]
- [VpcConfig => Paws::Comprehend::VpcConfig]
Each argument is described in detail in: Paws::Comprehend::StartDominantLanguageDetectionJob
Returns: a Paws::Comprehend::StartDominantLanguageDetectionJobResponse instance
Starts an asynchronous dominant language detection job for a collection of documents. Use the operation to track the status of a job.
StartEntitiesDetectionJob
- DataAccessRoleArn => Str
- InputDataConfig => Paws::Comprehend::InputDataConfig
- LanguageCode => Str
- OutputDataConfig => Paws::Comprehend::OutputDataConfig
- [ClientRequestToken => Str]
- [EntityRecognizerArn => Str]
- [JobName => Str]
- [VolumeKmsKeyId => Str]
- [VpcConfig => Paws::Comprehend::VpcConfig]
Each argument is described in detail in: Paws::Comprehend::StartEntitiesDetectionJob
Returns: a Paws::Comprehend::StartEntitiesDetectionJobResponse instance
Starts an asynchronous entity detection job for a collection of documents. Use the operation to track the status of a job.
This API can be used for either standard entity detection or custom entity recognition. In order to be used for custom entity recognition, the optional EntityRecognizerArn
must be used in order to provide access to the recognizer being used to detect the custom entity.
StartEventsDetectionJob
- DataAccessRoleArn => Str
- InputDataConfig => Paws::Comprehend::InputDataConfig
- LanguageCode => Str
- OutputDataConfig => Paws::Comprehend::OutputDataConfig
- TargetEventTypes => ArrayRef[Str|Undef]
- [ClientRequestToken => Str]
- [JobName => Str]
Each argument is described in detail in: Paws::Comprehend::StartEventsDetectionJob
Returns: a Paws::Comprehend::StartEventsDetectionJobResponse instance
Starts an asynchronous event detection job for a collection of documents.
StartKeyPhrasesDetectionJob
- DataAccessRoleArn => Str
- InputDataConfig => Paws::Comprehend::InputDataConfig
- LanguageCode => Str
- OutputDataConfig => Paws::Comprehend::OutputDataConfig
- [ClientRequestToken => Str]
- [JobName => Str]
- [VolumeKmsKeyId => Str]
- [VpcConfig => Paws::Comprehend::VpcConfig]
Each argument is described in detail in: Paws::Comprehend::StartKeyPhrasesDetectionJob
Returns: a Paws::Comprehend::StartKeyPhrasesDetectionJobResponse instance
Starts an asynchronous key phrase detection job for a collection of documents. Use the operation to track the status of a job.
StartPiiEntitiesDetectionJob
- DataAccessRoleArn => Str
- InputDataConfig => Paws::Comprehend::InputDataConfig
- LanguageCode => Str
- Mode => Str
- OutputDataConfig => Paws::Comprehend::OutputDataConfig
- [ClientRequestToken => Str]
- [JobName => Str]
- [RedactionConfig => Paws::Comprehend::RedactionConfig]
Each argument is described in detail in: Paws::Comprehend::StartPiiEntitiesDetectionJob
Returns: a Paws::Comprehend::StartPiiEntitiesDetectionJobResponse instance
Starts an asynchronous PII entity detection job for a collection of documents.
StartSentimentDetectionJob
- DataAccessRoleArn => Str
- InputDataConfig => Paws::Comprehend::InputDataConfig
- LanguageCode => Str
- OutputDataConfig => Paws::Comprehend::OutputDataConfig
- [ClientRequestToken => Str]
- [JobName => Str]
- [VolumeKmsKeyId => Str]
- [VpcConfig => Paws::Comprehend::VpcConfig]
Each argument is described in detail in: Paws::Comprehend::StartSentimentDetectionJob
Returns: a Paws::Comprehend::StartSentimentDetectionJobResponse instance
Starts an asynchronous sentiment detection job for a collection of documents. use the operation to track the status of a job.
StartTopicsDetectionJob
- DataAccessRoleArn => Str
- InputDataConfig => Paws::Comprehend::InputDataConfig
- OutputDataConfig => Paws::Comprehend::OutputDataConfig
- [ClientRequestToken => Str]
- [JobName => Str]
- [NumberOfTopics => Int]
- [VolumeKmsKeyId => Str]
- [VpcConfig => Paws::Comprehend::VpcConfig]
Each argument is described in detail in: Paws::Comprehend::StartTopicsDetectionJob
Returns: a Paws::Comprehend::StartTopicsDetectionJobResponse instance
Starts an asynchronous topic detection job. Use the DescribeTopicDetectionJob
operation to track the status of a job.
StopDominantLanguageDetectionJob
Each argument is described in detail in: Paws::Comprehend::StopDominantLanguageDetectionJob
Returns: a Paws::Comprehend::StopDominantLanguageDetectionJobResponse instance
Stops a dominant language detection job in progress.
If the job state is IN_PROGRESS
the job is marked for termination and put into the STOP_REQUESTED
state. If the job completes before it can be stopped, it is put into the COMPLETED
state; otherwise the job is stopped and put into the STOPPED
state.
If the job is in the COMPLETED
or FAILED
state when you call the StopDominantLanguageDetectionJob
operation, the operation returns a 400 Internal Request Exception.
When a job is stopped, any documents already processed are written to the output location.
StopEntitiesDetectionJob
Each argument is described in detail in: Paws::Comprehend::StopEntitiesDetectionJob
Returns: a Paws::Comprehend::StopEntitiesDetectionJobResponse instance
Stops an entities detection job in progress.
If the job state is IN_PROGRESS
the job is marked for termination and put into the STOP_REQUESTED
state. If the job completes before it can be stopped, it is put into the COMPLETED
state; otherwise the job is stopped and put into the STOPPED
state.
If the job is in the COMPLETED
or FAILED
state when you call the StopDominantLanguageDetectionJob
operation, the operation returns a 400 Internal Request Exception.
When a job is stopped, any documents already processed are written to the output location.
StopEventsDetectionJob
Each argument is described in detail in: Paws::Comprehend::StopEventsDetectionJob
Returns: a Paws::Comprehend::StopEventsDetectionJobResponse instance
Stops an events detection job in progress.
StopKeyPhrasesDetectionJob
Each argument is described in detail in: Paws::Comprehend::StopKeyPhrasesDetectionJob
Returns: a Paws::Comprehend::StopKeyPhrasesDetectionJobResponse instance
Stops a key phrases detection job in progress.
If the job state is IN_PROGRESS
the job is marked for termination and put into the STOP_REQUESTED
state. If the job completes before it can be stopped, it is put into the COMPLETED
state; otherwise the job is stopped and put into the STOPPED
state.
If the job is in the COMPLETED
or FAILED
state when you call the StopDominantLanguageDetectionJob
operation, the operation returns a 400 Internal Request Exception.
When a job is stopped, any documents already processed are written to the output location.
StopPiiEntitiesDetectionJob
Each argument is described in detail in: Paws::Comprehend::StopPiiEntitiesDetectionJob
Returns: a Paws::Comprehend::StopPiiEntitiesDetectionJobResponse instance
Stops a PII entities detection job in progress.
StopSentimentDetectionJob
Each argument is described in detail in: Paws::Comprehend::StopSentimentDetectionJob
Returns: a Paws::Comprehend::StopSentimentDetectionJobResponse instance
Stops a sentiment detection job in progress.
If the job state is IN_PROGRESS
the job is marked for termination and put into the STOP_REQUESTED
state. If the job completes before it can be stopped, it is put into the COMPLETED
state; otherwise the job is be stopped and put into the STOPPED
state.
If the job is in the COMPLETED
or FAILED
state when you call the StopDominantLanguageDetectionJob
operation, the operation returns a 400 Internal Request Exception.
When a job is stopped, any documents already processed are written to the output location.
StopTrainingDocumentClassifier
Each argument is described in detail in: Paws::Comprehend::StopTrainingDocumentClassifier
Returns: a Paws::Comprehend::StopTrainingDocumentClassifierResponse instance
Stops a document classifier training job while in progress.
If the training job state is TRAINING
, the job is marked for termination and put into the STOP_REQUESTED
state. If the training job completes before it can be stopped, it is put into the TRAINED
; otherwise the training job is stopped and put into the STOPPED
state and the service sends back an HTTP 200 response with an empty HTTP body.
StopTrainingEntityRecognizer
Each argument is described in detail in: Paws::Comprehend::StopTrainingEntityRecognizer
Returns: a Paws::Comprehend::StopTrainingEntityRecognizerResponse instance
Stops an entity recognizer training job while in progress.
If the training job state is TRAINING
, the job is marked for termination and put into the STOP_REQUESTED
state. If the training job completes before it can be stopped, it is put into the TRAINED
; otherwise the training job is stopped and putted into the STOPPED
state and the service sends back an HTTP 200 response with an empty HTTP body.
TagResource
- ResourceArn => Str
- Tags => ArrayRef[Paws::Comprehend::Tag]
Each argument is described in detail in: Paws::Comprehend::TagResource
Returns: a Paws::Comprehend::TagResourceResponse instance
Associates a specific tag with an Amazon Comprehend resource. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with "Sales" as the key might be added to a resource to indicate its use by the sales department.
UntagResource
Each argument is described in detail in: Paws::Comprehend::UntagResource
Returns: a Paws::Comprehend::UntagResourceResponse instance
Removes a specific tag associated with an Amazon Comprehend resource.
UpdateEndpoint
Each argument is described in detail in: Paws::Comprehend::UpdateEndpoint
Returns: a Paws::Comprehend::UpdateEndpointResponse instance
Updates information about the specified endpoint.
PAGINATORS
Paginator methods are helpers that repetively call methods that return partial results
ListAllDocumentClassificationJobs(sub { },[Filter => Paws::Comprehend::DocumentClassificationJobFilter, MaxResults => Int, NextToken => Str])
ListAllDocumentClassificationJobs([Filter => Paws::Comprehend::DocumentClassificationJobFilter, MaxResults => Int, NextToken => Str])
If passed a sub as first parameter, it will call the sub for each element found in :
- DocumentClassificationJobPropertiesList, passing the object as the first parameter, and the string 'DocumentClassificationJobPropertiesList' as the second parameter
If not, it will return a a Paws::Comprehend::ListDocumentClassificationJobsResponse instance with all the param
s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.
ListAllDocumentClassifiers(sub { },[Filter => Paws::Comprehend::DocumentClassifierFilter, MaxResults => Int, NextToken => Str])
ListAllDocumentClassifiers([Filter => Paws::Comprehend::DocumentClassifierFilter, MaxResults => Int, NextToken => Str])
If passed a sub as first parameter, it will call the sub for each element found in :
- DocumentClassifierPropertiesList, passing the object as the first parameter, and the string 'DocumentClassifierPropertiesList' as the second parameter
If not, it will return a a Paws::Comprehend::ListDocumentClassifiersResponse instance with all the param
s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.
ListAllDominantLanguageDetectionJobs(sub { },[Filter => Paws::Comprehend::DominantLanguageDetectionJobFilter, MaxResults => Int, NextToken => Str])
ListAllDominantLanguageDetectionJobs([Filter => Paws::Comprehend::DominantLanguageDetectionJobFilter, MaxResults => Int, NextToken => Str])
If passed a sub as first parameter, it will call the sub for each element found in :
- DominantLanguageDetectionJobPropertiesList, passing the object as the first parameter, and the string 'DominantLanguageDetectionJobPropertiesList' as the second parameter
If not, it will return a a Paws::Comprehend::ListDominantLanguageDetectionJobsResponse instance with all the param
s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.
ListAllEntitiesDetectionJobs(sub { },[Filter => Paws::Comprehend::EntitiesDetectionJobFilter, MaxResults => Int, NextToken => Str])
ListAllEntitiesDetectionJobs([Filter => Paws::Comprehend::EntitiesDetectionJobFilter, MaxResults => Int, NextToken => Str])
If passed a sub as first parameter, it will call the sub for each element found in :
- EntitiesDetectionJobPropertiesList, passing the object as the first parameter, and the string 'EntitiesDetectionJobPropertiesList' as the second parameter
If not, it will return a a Paws::Comprehend::ListEntitiesDetectionJobsResponse instance with all the param
s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.
ListAllEntityRecognizers(sub { },[Filter => Paws::Comprehend::EntityRecognizerFilter, MaxResults => Int, NextToken => Str])
ListAllEntityRecognizers([Filter => Paws::Comprehend::EntityRecognizerFilter, MaxResults => Int, NextToken => Str])
If passed a sub as first parameter, it will call the sub for each element found in :
- EntityRecognizerPropertiesList, passing the object as the first parameter, and the string 'EntityRecognizerPropertiesList' as the second parameter
If not, it will return a a Paws::Comprehend::ListEntityRecognizersResponse instance with all the param
s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.
ListAllKeyPhrasesDetectionJobs(sub { },[Filter => Paws::Comprehend::KeyPhrasesDetectionJobFilter, MaxResults => Int, NextToken => Str])
ListAllKeyPhrasesDetectionJobs([Filter => Paws::Comprehend::KeyPhrasesDetectionJobFilter, MaxResults => Int, NextToken => Str])
If passed a sub as first parameter, it will call the sub for each element found in :
- KeyPhrasesDetectionJobPropertiesList, passing the object as the first parameter, and the string 'KeyPhrasesDetectionJobPropertiesList' as the second parameter
If not, it will return a a Paws::Comprehend::ListKeyPhrasesDetectionJobsResponse instance with all the param
s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.
ListAllSentimentDetectionJobs(sub { },[Filter => Paws::Comprehend::SentimentDetectionJobFilter, MaxResults => Int, NextToken => Str])
ListAllSentimentDetectionJobs([Filter => Paws::Comprehend::SentimentDetectionJobFilter, MaxResults => Int, NextToken => Str])
If passed a sub as first parameter, it will call the sub for each element found in :
- SentimentDetectionJobPropertiesList, passing the object as the first parameter, and the string 'SentimentDetectionJobPropertiesList' as the second parameter
If not, it will return a a Paws::Comprehend::ListSentimentDetectionJobsResponse instance with all the param
s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.
ListAllTopicsDetectionJobs(sub { },[Filter => Paws::Comprehend::TopicsDetectionJobFilter, MaxResults => Int, NextToken => Str])
ListAllTopicsDetectionJobs([Filter => Paws::Comprehend::TopicsDetectionJobFilter, MaxResults => Int, NextToken => Str])
If passed a sub as first parameter, it will call the sub for each element found in :
- TopicsDetectionJobPropertiesList, passing the object as the first parameter, and the string 'TopicsDetectionJobPropertiesList' as the second parameter
If not, it will return a a Paws::Comprehend::ListTopicsDetectionJobsResponse instance with all the param
s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.
SEE ALSO
This service class forms part of Paws
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues