JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.793

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
  • Summary:
  • Nested |
  • Field |
  • Constr |
  • Method
  • Detail:
  • Field |
  • Constr |
  • Method
com.amazonaws.services.comprehend

Interface AmazonComprehendAsync

  • All Superinterfaces:
    AmazonComprehend
    All Known Implementing Classes:
    AbstractAmazonComprehendAsync, AmazonComprehendAsyncClient


    @Generated(value="com.amazonaws:aws-java-sdk-code-generator")
    public interface AmazonComprehendAsync
    extends AmazonComprehend 
    Interface for accessing Amazon Comprehend asynchronously. Each asynchronous method will return a Java Future object representing the asynchronous operation; overloads which accept an AsyncHandler can be used to receive notification when an asynchronous operation completes.

    Note: Do not directly implement this interface, new methods are added to it regularly. Extend from AbstractAmazonComprehendAsync instead.

    Amazon Comprehend is an Amazon Web Services 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.

    • Method Detail

      • batchDetectEntitiesAsync

        Future<BatchDetectEntitiesResult> batchDetectEntitiesAsync(BatchDetectEntitiesRequest batchDetectEntitiesRequest)

        Inspects the text of a batch of documents for named entities and returns information about them. For more information about named entities, see Entities in the Comprehend Developer Guide.

        Parameters:
        batchDetectEntitiesRequest -
        Returns:
        A Java Future containing the result of the BatchDetectEntities operation returned by the service.
        See Also:
        AWS API Documentation
      • batchDetectEntitiesAsync

        Future<BatchDetectEntitiesResult> batchDetectEntitiesAsync(BatchDetectEntitiesRequest batchDetectEntitiesRequest,
         AsyncHandler<BatchDetectEntitiesRequest,BatchDetectEntitiesResult> asyncHandler)

        Inspects the text of a batch of documents for named entities and returns information about them. For more information about named entities, see Entities in the Comprehend Developer Guide.

        Parameters:
        batchDetectEntitiesRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the BatchDetectEntities operation returned by the service.
        See Also:
        AWS API Documentation
      • batchDetectSentimentAsync

        Future<BatchDetectSentimentResult> batchDetectSentimentAsync(BatchDetectSentimentRequest batchDetectSentimentRequest)

        Inspects a batch of documents and returns an inference of the prevailing sentiment, POSITIVE, NEUTRAL, MIXED, or NEGATIVE, in each one.

        Parameters:
        batchDetectSentimentRequest -
        Returns:
        A Java Future containing the result of the BatchDetectSentiment operation returned by the service.
        See Also:
        AWS API Documentation
      • batchDetectSentimentAsync

        Future<BatchDetectSentimentResult> batchDetectSentimentAsync(BatchDetectSentimentRequest batchDetectSentimentRequest,
         AsyncHandler<BatchDetectSentimentRequest,BatchDetectSentimentResult> asyncHandler)

        Inspects a batch of documents and returns an inference of the prevailing sentiment, POSITIVE, NEUTRAL, MIXED, or NEGATIVE, in each one.

        Parameters:
        batchDetectSentimentRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the BatchDetectSentiment operation returned by the service.
        See Also:
        AWS API Documentation
      • batchDetectSyntaxAsync

        Future<BatchDetectSyntaxResult> batchDetectSyntaxAsync(BatchDetectSyntaxRequest batchDetectSyntaxRequest)

        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 Syntax in the Comprehend Developer Guide.

        Parameters:
        batchDetectSyntaxRequest -
        Returns:
        A Java Future containing the result of the BatchDetectSyntax operation returned by the service.
        See Also:
        AWS API Documentation
      • batchDetectSyntaxAsync

        Future<BatchDetectSyntaxResult> batchDetectSyntaxAsync(BatchDetectSyntaxRequest batchDetectSyntaxRequest,
         AsyncHandler<BatchDetectSyntaxRequest,BatchDetectSyntaxResult> asyncHandler)

        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 Syntax in the Comprehend Developer Guide.

        Parameters:
        batchDetectSyntaxRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the BatchDetectSyntax operation returned by the service.
        See Also:
        AWS API Documentation
      • batchDetectTargetedSentimentAsync

        Future<BatchDetectTargetedSentimentResult> batchDetectTargetedSentimentAsync(BatchDetectTargetedSentimentRequest batchDetectTargetedSentimentRequest)

        Inspects a batch of documents and returns a sentiment analysis for each entity identified in the documents.

        For more information about targeted sentiment, see Targeted sentiment in the Amazon Comprehend Developer Guide.

        Parameters:
        batchDetectTargetedSentimentRequest -
        Returns:
        A Java Future containing the result of the BatchDetectTargetedSentiment operation returned by the service.
        See Also:
        AWS API Documentation
      • classifyDocumentAsync

        Future<ClassifyDocumentResult> classifyDocumentAsync(ClassifyDocumentRequest classifyDocumentRequest)

        Creates a classification request to analyze a single document in real-time. ClassifyDocument supports the following model types:

        • Custom classifier - a custom model that you have created and trained. For input, you can provide plain text, a single-page document (PDF, Word, or image), or Amazon Textract API output. For more information, see Custom classification in the Amazon Comprehend Developer Guide.

        • Prompt safety classifier - Amazon Comprehend provides a pre-trained model for classifying input prompts for generative AI applications. For input, you provide English plain text input. For prompt safety classification, the response includes only the Classes field. For more information about prompt safety classifiers, see Prompt safety classification in the Amazon Comprehend Developer Guide.

        If the system detects errors while processing a page in the input document, the API response includes an Errors field that describes the errors.

        If the system detects a document-level error in your input document, the API returns an InvalidRequestException error response. For details about this exception, see Errors in semi-structured documents in the Comprehend Developer Guide.

        Parameters:
        classifyDocumentRequest -
        Returns:
        A Java Future containing the result of the ClassifyDocument operation returned by the service.
        See Also:
        AWS API Documentation
      • classifyDocumentAsync

        Future<ClassifyDocumentResult> classifyDocumentAsync(ClassifyDocumentRequest classifyDocumentRequest,
         AsyncHandler<ClassifyDocumentRequest,ClassifyDocumentResult> asyncHandler)

        Creates a classification request to analyze a single document in real-time. ClassifyDocument supports the following model types:

        • Custom classifier - a custom model that you have created and trained. For input, you can provide plain text, a single-page document (PDF, Word, or image), or Amazon Textract API output. For more information, see Custom classification in the Amazon Comprehend Developer Guide.

        • Prompt safety classifier - Amazon Comprehend provides a pre-trained model for classifying input prompts for generative AI applications. For input, you provide English plain text input. For prompt safety classification, the response includes only the Classes field. For more information about prompt safety classifiers, see Prompt safety classification in the Amazon Comprehend Developer Guide.

        If the system detects errors while processing a page in the input document, the API response includes an Errors field that describes the errors.

        If the system detects a document-level error in your input document, the API returns an InvalidRequestException error response. For details about this exception, see Errors in semi-structured documents in the Comprehend Developer Guide.

        Parameters:
        classifyDocumentRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ClassifyDocument operation returned by the service.
        See Also:
        AWS API Documentation
      • containsPiiEntitiesAsync

        Future<ContainsPiiEntitiesResult> containsPiiEntitiesAsync(ContainsPiiEntitiesRequest containsPiiEntitiesRequest)

        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.

        Parameters:
        containsPiiEntitiesRequest -
        Returns:
        A Java Future containing the result of the ContainsPiiEntities operation returned by the service.
        See Also:
        AWS API Documentation
      • containsPiiEntitiesAsync

        Future<ContainsPiiEntitiesResult> containsPiiEntitiesAsync(ContainsPiiEntitiesRequest containsPiiEntitiesRequest,
         AsyncHandler<ContainsPiiEntitiesRequest,ContainsPiiEntitiesResult> asyncHandler)

        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.

        Parameters:
        containsPiiEntitiesRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ContainsPiiEntities operation returned by the service.
        See Also:
        AWS API Documentation
      • createDatasetAsync

        Future<CreateDatasetResult> createDatasetAsync(CreateDatasetRequest createDatasetRequest)

        Creates a dataset to upload training or test data for a model associated with a flywheel. For more information about datasets, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        createDatasetRequest -
        Returns:
        A Java Future containing the result of the CreateDataset operation returned by the service.
        See Also:
        AWS API Documentation
      • createDatasetAsync

        Future<CreateDatasetResult> createDatasetAsync(CreateDatasetRequest createDatasetRequest,
         AsyncHandler<CreateDatasetRequest,CreateDatasetResult> asyncHandler)

        Creates a dataset to upload training or test data for a model associated with a flywheel. For more information about datasets, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        createDatasetRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the CreateDataset operation returned by the service.
        See Also:
        AWS API Documentation
      • createDocumentClassifierAsync

        Future<CreateDocumentClassifierResult> createDocumentClassifierAsync(CreateDocumentClassifierRequest createDocumentClassifierRequest)

        Creates a new document classifier that you can use to categorize documents. To create a classifier, you provide a set of training documents that are labeled with the categories that you want to use. For more information, see Training classifier models in the Comprehend Developer Guide.

        Parameters:
        createDocumentClassifierRequest -
        Returns:
        A Java Future containing the result of the CreateDocumentClassifier operation returned by the service.
        See Also:
        AWS API Documentation
      • createDocumentClassifierAsync

        Future<CreateDocumentClassifierResult> createDocumentClassifierAsync(CreateDocumentClassifierRequest createDocumentClassifierRequest,
         AsyncHandler<CreateDocumentClassifierRequest,CreateDocumentClassifierResult> asyncHandler)

        Creates a new document classifier that you can use to categorize documents. To create a classifier, you provide a set of training documents that are labeled with the categories that you want to use. For more information, see Training classifier models in the Comprehend Developer Guide.

        Parameters:
        createDocumentClassifierRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the CreateDocumentClassifier operation returned by the service.
        See Also:
        AWS API Documentation
      • createEndpointAsync

        Future<CreateEndpointResult> createEndpointAsync(CreateEndpointRequest createEndpointRequest)

        Creates a model-specific endpoint for synchronous inference for a previously trained custom model For information about endpoints, see Managing endpoints.

        Parameters:
        createEndpointRequest -
        Returns:
        A Java Future containing the result of the CreateEndpoint operation returned by the service.
        See Also:
        AWS API Documentation
      • createEndpointAsync

        Future<CreateEndpointResult> createEndpointAsync(CreateEndpointRequest createEndpointRequest,
         AsyncHandler<CreateEndpointRequest,CreateEndpointResult> asyncHandler)

        Creates a model-specific endpoint for synchronous inference for a previously trained custom model For information about endpoints, see Managing endpoints.

        Parameters:
        createEndpointRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the CreateEndpoint operation returned by the service.
        See Also:
        AWS API Documentation
      • createEntityRecognizerAsync

        Future<CreateEntityRecognizerResult> createEntityRecognizerAsync(CreateEntityRecognizerRequest createEntityRecognizerRequest)

        Creates an entity recognizer using submitted files. After your CreateEntityRecognizer request is submitted, you can check job status using the DescribeEntityRecognizer API.

        Parameters:
        createEntityRecognizerRequest -
        Returns:
        A Java Future containing the result of the CreateEntityRecognizer operation returned by the service.
        See Also:
        AWS API Documentation
      • createEntityRecognizerAsync

        Future<CreateEntityRecognizerResult> createEntityRecognizerAsync(CreateEntityRecognizerRequest createEntityRecognizerRequest,
         AsyncHandler<CreateEntityRecognizerRequest,CreateEntityRecognizerResult> asyncHandler)

        Creates an entity recognizer using submitted files. After your CreateEntityRecognizer request is submitted, you can check job status using the DescribeEntityRecognizer API.

        Parameters:
        createEntityRecognizerRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the CreateEntityRecognizer operation returned by the service.
        See Also:
        AWS API Documentation
      • createFlywheelAsync

        Future<CreateFlywheelResult> createFlywheelAsync(CreateFlywheelRequest createFlywheelRequest)

        A flywheel is an Amazon Web Services resource that orchestrates the ongoing training of a model for custom classification or custom entity recognition. You can create a flywheel to start with an existing trained model, or Comprehend can create and train a new model.

        When you create the flywheel, Comprehend creates a data lake in your account. The data lake holds the training data and test data for all versions of the model.

        To use a flywheel with an existing trained model, you specify the active model version. Comprehend copies the model's training data and test data into the flywheel's data lake.

        To use the flywheel with a new model, you need to provide a dataset for training data (and optional test data) when you create the flywheel.

        For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        createFlywheelRequest -
        Returns:
        A Java Future containing the result of the CreateFlywheel operation returned by the service.
        See Also:
        AWS API Documentation
      • createFlywheelAsync

        Future<CreateFlywheelResult> createFlywheelAsync(CreateFlywheelRequest createFlywheelRequest,
         AsyncHandler<CreateFlywheelRequest,CreateFlywheelResult> asyncHandler)

        A flywheel is an Amazon Web Services resource that orchestrates the ongoing training of a model for custom classification or custom entity recognition. You can create a flywheel to start with an existing trained model, or Comprehend can create and train a new model.

        When you create the flywheel, Comprehend creates a data lake in your account. The data lake holds the training data and test data for all versions of the model.

        To use a flywheel with an existing trained model, you specify the active model version. Comprehend copies the model's training data and test data into the flywheel's data lake.

        To use the flywheel with a new model, you need to provide a dataset for training data (and optional test data) when you create the flywheel.

        For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        createFlywheelRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the CreateFlywheel operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteDocumentClassifierAsync

        Future<DeleteDocumentClassifierResult> deleteDocumentClassifierAsync(DeleteDocumentClassifierRequest deleteDocumentClassifierRequest)

        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.

        Parameters:
        deleteDocumentClassifierRequest -
        Returns:
        A Java Future containing the result of the DeleteDocumentClassifier operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteDocumentClassifierAsync

        Future<DeleteDocumentClassifierResult> deleteDocumentClassifierAsync(DeleteDocumentClassifierRequest deleteDocumentClassifierRequest,
         AsyncHandler<DeleteDocumentClassifierRequest,DeleteDocumentClassifierResult> asyncHandler)

        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.

        Parameters:
        deleteDocumentClassifierRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DeleteDocumentClassifier operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteEndpointAsync

        Future<DeleteEndpointResult> deleteEndpointAsync(DeleteEndpointRequest deleteEndpointRequest)

        Deletes a model-specific endpoint for a previously-trained custom model. All endpoints must be deleted in order for the model to be deleted. For information about endpoints, see Managing endpoints.

        Parameters:
        deleteEndpointRequest -
        Returns:
        A Java Future containing the result of the DeleteEndpoint operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteEndpointAsync

        Future<DeleteEndpointResult> deleteEndpointAsync(DeleteEndpointRequest deleteEndpointRequest,
         AsyncHandler<DeleteEndpointRequest,DeleteEndpointResult> asyncHandler)

        Deletes a model-specific endpoint for a previously-trained custom model. All endpoints must be deleted in order for the model to be deleted. For information about endpoints, see Managing endpoints.

        Parameters:
        deleteEndpointRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DeleteEndpoint operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteEntityRecognizerAsync

        Future<DeleteEntityRecognizerResult> deleteEntityRecognizerAsync(DeleteEntityRecognizerRequest deleteEntityRecognizerRequest)

        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.

        Parameters:
        deleteEntityRecognizerRequest -
        Returns:
        A Java Future containing the result of the DeleteEntityRecognizer operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteEntityRecognizerAsync

        Future<DeleteEntityRecognizerResult> deleteEntityRecognizerAsync(DeleteEntityRecognizerRequest deleteEntityRecognizerRequest,
         AsyncHandler<DeleteEntityRecognizerRequest,DeleteEntityRecognizerResult> asyncHandler)

        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.

        Parameters:
        deleteEntityRecognizerRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DeleteEntityRecognizer operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteFlywheelAsync

        Future<DeleteFlywheelResult> deleteFlywheelAsync(DeleteFlywheelRequest deleteFlywheelRequest)

        Deletes a flywheel. When you delete the flywheel, Amazon Comprehend does not delete the data lake or the model associated with the flywheel.

        For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        deleteFlywheelRequest -
        Returns:
        A Java Future containing the result of the DeleteFlywheel operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteFlywheelAsync

        Future<DeleteFlywheelResult> deleteFlywheelAsync(DeleteFlywheelRequest deleteFlywheelRequest,
         AsyncHandler<DeleteFlywheelRequest,DeleteFlywheelResult> asyncHandler)

        Deletes a flywheel. When you delete the flywheel, Amazon Comprehend does not delete the data lake or the model associated with the flywheel.

        For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        deleteFlywheelRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DeleteFlywheel operation returned by the service.
        See Also:
        AWS API Documentation
      • deleteResourcePolicyAsync

        Future<DeleteResourcePolicyResult> deleteResourcePolicyAsync(DeleteResourcePolicyRequest deleteResourcePolicyRequest,
         AsyncHandler<DeleteResourcePolicyRequest,DeleteResourcePolicyResult> asyncHandler)

        Deletes a resource-based policy that is attached to a custom model.

        Parameters:
        deleteResourcePolicyRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DeleteResourcePolicy operation returned by the service.
        See Also:
        AWS API Documentation
      • describeDatasetAsync

        Future<DescribeDatasetResult> describeDatasetAsync(DescribeDatasetRequest describeDatasetRequest)

        Returns information about the dataset that you specify. For more information about datasets, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        describeDatasetRequest -
        Returns:
        A Java Future containing the result of the DescribeDataset operation returned by the service.
        See Also:
        AWS API Documentation
      • describeDatasetAsync

        Future<DescribeDatasetResult> describeDatasetAsync(DescribeDatasetRequest describeDatasetRequest,
         AsyncHandler<DescribeDatasetRequest,DescribeDatasetResult> asyncHandler)

        Returns information about the dataset that you specify. For more information about datasets, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        describeDatasetRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DescribeDataset operation returned by the service.
        See Also:
        AWS API Documentation
      • describeDocumentClassificationJobAsync

        Future<DescribeDocumentClassificationJobResult> describeDocumentClassificationJobAsync(DescribeDocumentClassificationJobRequest describeDocumentClassificationJobRequest)

        Gets the properties associated with a document classification job. Use this operation to get the status of a classification job.

        Parameters:
        describeDocumentClassificationJobRequest -
        Returns:
        A Java Future containing the result of the DescribeDocumentClassificationJob operation returned by the service.
        See Also:
        AWS API Documentation
      • describeDominantLanguageDetectionJobAsync

        Future<DescribeDominantLanguageDetectionJobResult> describeDominantLanguageDetectionJobAsync(DescribeDominantLanguageDetectionJobRequest describeDominantLanguageDetectionJobRequest)

        Gets the properties associated with a dominant language detection job. Use this operation to get the status of a detection job.

        Parameters:
        describeDominantLanguageDetectionJobRequest -
        Returns:
        A Java Future containing the result of the DescribeDominantLanguageDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • describeEndpointAsync

        Future<DescribeEndpointResult> describeEndpointAsync(DescribeEndpointRequest describeEndpointRequest)

        Gets the properties associated with a specific endpoint. Use this operation to get the status of an endpoint. For information about endpoints, see Managing endpoints.

        Parameters:
        describeEndpointRequest -
        Returns:
        A Java Future containing the result of the DescribeEndpoint operation returned by the service.
        See Also:
        AWS API Documentation
      • describeEndpointAsync

        Future<DescribeEndpointResult> describeEndpointAsync(DescribeEndpointRequest describeEndpointRequest,
         AsyncHandler<DescribeEndpointRequest,DescribeEndpointResult> asyncHandler)

        Gets the properties associated with a specific endpoint. Use this operation to get the status of an endpoint. For information about endpoints, see Managing endpoints.

        Parameters:
        describeEndpointRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DescribeEndpoint operation returned by the service.
        See Also:
        AWS API Documentation
      • describeEntitiesDetectionJobAsync

        Future<DescribeEntitiesDetectionJobResult> describeEntitiesDetectionJobAsync(DescribeEntitiesDetectionJobRequest describeEntitiesDetectionJobRequest)

        Gets the properties associated with an entities detection job. Use this operation to get the status of a detection job.

        Parameters:
        describeEntitiesDetectionJobRequest -
        Returns:
        A Java Future containing the result of the DescribeEntitiesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • describeEntityRecognizerAsync

        Future<DescribeEntityRecognizerResult> describeEntityRecognizerAsync(DescribeEntityRecognizerRequest describeEntityRecognizerRequest)

        Provides details about an entity recognizer including status, S3 buckets containing training data, recognizer metadata, metrics, and so on.

        Parameters:
        describeEntityRecognizerRequest -
        Returns:
        A Java Future containing the result of the DescribeEntityRecognizer operation returned by the service.
        See Also:
        AWS API Documentation
      • describeEntityRecognizerAsync

        Future<DescribeEntityRecognizerResult> describeEntityRecognizerAsync(DescribeEntityRecognizerRequest describeEntityRecognizerRequest,
         AsyncHandler<DescribeEntityRecognizerRequest,DescribeEntityRecognizerResult> asyncHandler)

        Provides details about an entity recognizer including status, S3 buckets containing training data, recognizer metadata, metrics, and so on.

        Parameters:
        describeEntityRecognizerRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DescribeEntityRecognizer operation returned by the service.
        See Also:
        AWS API Documentation
      • describeFlywheelAsync

        Future<DescribeFlywheelResult> describeFlywheelAsync(DescribeFlywheelRequest describeFlywheelRequest)

        Provides configuration information about the flywheel. For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        describeFlywheelRequest -
        Returns:
        A Java Future containing the result of the DescribeFlywheel operation returned by the service.
        See Also:
        AWS API Documentation
      • describeFlywheelAsync

        Future<DescribeFlywheelResult> describeFlywheelAsync(DescribeFlywheelRequest describeFlywheelRequest,
         AsyncHandler<DescribeFlywheelRequest,DescribeFlywheelResult> asyncHandler)

        Provides configuration information about the flywheel. For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        describeFlywheelRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DescribeFlywheel operation returned by the service.
        See Also:
        AWS API Documentation
      • describeKeyPhrasesDetectionJobAsync

        Future<DescribeKeyPhrasesDetectionJobResult> describeKeyPhrasesDetectionJobAsync(DescribeKeyPhrasesDetectionJobRequest describeKeyPhrasesDetectionJobRequest)

        Gets the properties associated with a key phrases detection job. Use this operation to get the status of a detection job.

        Parameters:
        describeKeyPhrasesDetectionJobRequest -
        Returns:
        A Java Future containing the result of the DescribeKeyPhrasesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • describePiiEntitiesDetectionJobAsync

        Future<DescribePiiEntitiesDetectionJobResult> describePiiEntitiesDetectionJobAsync(DescribePiiEntitiesDetectionJobRequest describePiiEntitiesDetectionJobRequest)

        Gets the properties associated with a PII entities detection job. For example, you can use this operation to get the job status.

        Parameters:
        describePiiEntitiesDetectionJobRequest -
        Returns:
        A Java Future containing the result of the DescribePiiEntitiesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • describeResourcePolicyAsync

        Future<DescribeResourcePolicyResult> describeResourcePolicyAsync(DescribeResourcePolicyRequest describeResourcePolicyRequest)

        Gets the details of a resource-based policy that is attached to a custom model, including the JSON body of the policy.

        Parameters:
        describeResourcePolicyRequest -
        Returns:
        A Java Future containing the result of the DescribeResourcePolicy operation returned by the service.
        See Also:
        AWS API Documentation
      • describeResourcePolicyAsync

        Future<DescribeResourcePolicyResult> describeResourcePolicyAsync(DescribeResourcePolicyRequest describeResourcePolicyRequest,
         AsyncHandler<DescribeResourcePolicyRequest,DescribeResourcePolicyResult> asyncHandler)

        Gets the details of a resource-based policy that is attached to a custom model, including the JSON body of the policy.

        Parameters:
        describeResourcePolicyRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DescribeResourcePolicy operation returned by the service.
        See Also:
        AWS API Documentation
      • describeSentimentDetectionJobAsync

        Future<DescribeSentimentDetectionJobResult> describeSentimentDetectionJobAsync(DescribeSentimentDetectionJobRequest describeSentimentDetectionJobRequest)

        Gets the properties associated with a sentiment detection job. Use this operation to get the status of a detection job.

        Parameters:
        describeSentimentDetectionJobRequest -
        Returns:
        A Java Future containing the result of the DescribeSentimentDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • describeTopicsDetectionJobAsync

        Future<DescribeTopicsDetectionJobResult> describeTopicsDetectionJobAsync(DescribeTopicsDetectionJobRequest describeTopicsDetectionJobRequest)

        Gets the properties associated with a topic detection job. Use this operation to get the status of a detection job.

        Parameters:
        describeTopicsDetectionJobRequest -
        Returns:
        A Java Future containing the result of the DescribeTopicsDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • detectEntitiesAsync

        Future<DetectEntitiesResult> detectEntitiesAsync(DetectEntitiesRequest detectEntitiesRequest)

        Detects named entities in input text when you use the pre-trained model. Detects custom entities if you have a custom entity recognition model.

        When detecting named entities using the pre-trained model, use plain text as the input. For more information about named entities, see Entities in the Comprehend Developer Guide.

        When you use a custom entity recognition model, you can input plain text or you can upload a single-page input document (text, PDF, Word, or image).

        If the system detects errors while processing a page in the input document, the API response includes an entry in Errors for each error.

        If the system detects a document-level error in your input document, the API returns an InvalidRequestException error response. For details about this exception, see Errors in semi-structured documents in the Comprehend Developer Guide.

        Parameters:
        detectEntitiesRequest -
        Returns:
        A Java Future containing the result of the DetectEntities operation returned by the service.
        See Also:
        AWS API Documentation
      • detectEntitiesAsync

        Future<DetectEntitiesResult> detectEntitiesAsync(DetectEntitiesRequest detectEntitiesRequest,
         AsyncHandler<DetectEntitiesRequest,DetectEntitiesResult> asyncHandler)

        Detects named entities in input text when you use the pre-trained model. Detects custom entities if you have a custom entity recognition model.

        When detecting named entities using the pre-trained model, use plain text as the input. For more information about named entities, see Entities in the Comprehend Developer Guide.

        When you use a custom entity recognition model, you can input plain text or you can upload a single-page input document (text, PDF, Word, or image).

        If the system detects errors while processing a page in the input document, the API response includes an entry in Errors for each error.

        If the system detects a document-level error in your input document, the API returns an InvalidRequestException error response. For details about this exception, see Errors in semi-structured documents in the Comprehend Developer Guide.

        Parameters:
        detectEntitiesRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DetectEntities operation returned by the service.
        See Also:
        AWS API Documentation
      • detectKeyPhrasesAsync

        Future<DetectKeyPhrasesResult> detectKeyPhrasesAsync(DetectKeyPhrasesRequest detectKeyPhrasesRequest,
         AsyncHandler<DetectKeyPhrasesRequest,DetectKeyPhrasesResult> asyncHandler)

        Detects the key noun phrases found in the text.

        Parameters:
        detectKeyPhrasesRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DetectKeyPhrases operation returned by the service.
        See Also:
        AWS API Documentation
      • detectPiiEntitiesAsync

        Future<DetectPiiEntitiesResult> detectPiiEntitiesAsync(DetectPiiEntitiesRequest detectPiiEntitiesRequest)

        Inspects the input text for entities that contain personally identifiable information (PII) and returns information about them.

        Parameters:
        detectPiiEntitiesRequest -
        Returns:
        A Java Future containing the result of the DetectPiiEntities operation returned by the service.
        See Also:
        AWS API Documentation
      • detectPiiEntitiesAsync

        Future<DetectPiiEntitiesResult> detectPiiEntitiesAsync(DetectPiiEntitiesRequest detectPiiEntitiesRequest,
         AsyncHandler<DetectPiiEntitiesRequest,DetectPiiEntitiesResult> asyncHandler)

        Inspects the input text for entities that contain personally identifiable information (PII) and returns information about them.

        Parameters:
        detectPiiEntitiesRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DetectPiiEntities operation returned by the service.
        See Also:
        AWS API Documentation
      • detectSentimentAsync

        Future<DetectSentimentResult> detectSentimentAsync(DetectSentimentRequest detectSentimentRequest)

        Inspects text and returns an inference of the prevailing sentiment (POSITIVE, NEUTRAL, MIXED, or NEGATIVE).

        Parameters:
        detectSentimentRequest -
        Returns:
        A Java Future containing the result of the DetectSentiment operation returned by the service.
        See Also:
        AWS API Documentation
      • detectSentimentAsync

        Future<DetectSentimentResult> detectSentimentAsync(DetectSentimentRequest detectSentimentRequest,
         AsyncHandler<DetectSentimentRequest,DetectSentimentResult> asyncHandler)

        Inspects text and returns an inference of the prevailing sentiment (POSITIVE, NEUTRAL, MIXED, or NEGATIVE).

        Parameters:
        detectSentimentRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DetectSentiment operation returned by the service.
        See Also:
        AWS API Documentation
      • detectSyntaxAsync

        Future<DetectSyntaxResult> detectSyntaxAsync(DetectSyntaxRequest detectSyntaxRequest)

        Inspects text for syntax and the part of speech of words in the document. For more information, see Syntax in the Comprehend Developer Guide.

        Parameters:
        detectSyntaxRequest -
        Returns:
        A Java Future containing the result of the DetectSyntax operation returned by the service.
        See Also:
        AWS API Documentation
      • detectSyntaxAsync

        Future<DetectSyntaxResult> detectSyntaxAsync(DetectSyntaxRequest detectSyntaxRequest,
         AsyncHandler<DetectSyntaxRequest,DetectSyntaxResult> asyncHandler)

        Inspects text for syntax and the part of speech of words in the document. For more information, see Syntax in the Comprehend Developer Guide.

        Parameters:
        detectSyntaxRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DetectSyntax operation returned by the service.
        See Also:
        AWS API Documentation
      • detectTargetedSentimentAsync

        Future<DetectTargetedSentimentResult> detectTargetedSentimentAsync(DetectTargetedSentimentRequest detectTargetedSentimentRequest)

        Inspects the input text and returns a sentiment analysis for each entity identified in the text.

        For more information about targeted sentiment, see Targeted sentiment in the Amazon Comprehend Developer Guide.

        Parameters:
        detectTargetedSentimentRequest -
        Returns:
        A Java Future containing the result of the DetectTargetedSentiment operation returned by the service.
        See Also:
        AWS API Documentation
      • detectTargetedSentimentAsync

        Future<DetectTargetedSentimentResult> detectTargetedSentimentAsync(DetectTargetedSentimentRequest detectTargetedSentimentRequest,
         AsyncHandler<DetectTargetedSentimentRequest,DetectTargetedSentimentResult> asyncHandler)

        Inspects the input text and returns a sentiment analysis for each entity identified in the text.

        For more information about targeted sentiment, see Targeted sentiment in the Amazon Comprehend Developer Guide.

        Parameters:
        detectTargetedSentimentRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DetectTargetedSentiment operation returned by the service.
        See Also:
        AWS API Documentation
      • detectToxicContentAsync

        Future<DetectToxicContentResult> detectToxicContentAsync(DetectToxicContentRequest detectToxicContentRequest)

        Performs toxicity analysis on the list of text strings that you provide as input. The API response contains a results list that matches the size of the input list. For more information about toxicity detection, see Toxicity detection in the Amazon Comprehend Developer Guide.

        Parameters:
        detectToxicContentRequest -
        Returns:
        A Java Future containing the result of the DetectToxicContent operation returned by the service.
        See Also:
        AWS API Documentation
      • detectToxicContentAsync

        Future<DetectToxicContentResult> detectToxicContentAsync(DetectToxicContentRequest detectToxicContentRequest,
         AsyncHandler<DetectToxicContentRequest,DetectToxicContentResult> asyncHandler)

        Performs toxicity analysis on the list of text strings that you provide as input. The API response contains a results list that matches the size of the input list. For more information about toxicity detection, see Toxicity detection in the Amazon Comprehend Developer Guide.

        Parameters:
        detectToxicContentRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the DetectToxicContent operation returned by the service.
        See Also:
        AWS API Documentation
      • importModelAsync

        Future<ImportModelResult> importModelAsync(ImportModelRequest importModelRequest)

        Creates a new custom model that replicates a source custom model that you import. The source model can be in your Amazon Web Services account or another one.

        If the source model is in another Amazon Web Services account, then it must have a resource-based policy that authorizes you to import it.

        The source model must be in the same Amazon Web Services Region that you're using when you import. You can't import a model that's in a different Region.

        Parameters:
        importModelRequest -
        Returns:
        A Java Future containing the result of the ImportModel operation returned by the service.
        See Also:
        AWS API Documentation
      • importModelAsync

        Future<ImportModelResult> importModelAsync(ImportModelRequest importModelRequest,
         AsyncHandler<ImportModelRequest,ImportModelResult> asyncHandler)

        Creates a new custom model that replicates a source custom model that you import. The source model can be in your Amazon Web Services account or another one.

        If the source model is in another Amazon Web Services account, then it must have a resource-based policy that authorizes you to import it.

        The source model must be in the same Amazon Web Services Region that you're using when you import. You can't import a model that's in a different Region.

        Parameters:
        importModelRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ImportModel operation returned by the service.
        See Also:
        AWS API Documentation
      • listDatasetsAsync

        Future<ListDatasetsResult> listDatasetsAsync(ListDatasetsRequest listDatasetsRequest)

        List the datasets that you have configured in this Region. For more information about datasets, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        listDatasetsRequest -
        Returns:
        A Java Future containing the result of the ListDatasets operation returned by the service.
        See Also:
        AWS API Documentation
      • listDatasetsAsync

        Future<ListDatasetsResult> listDatasetsAsync(ListDatasetsRequest listDatasetsRequest,
         AsyncHandler<ListDatasetsRequest,ListDatasetsResult> asyncHandler)

        List the datasets that you have configured in this Region. For more information about datasets, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        listDatasetsRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ListDatasets operation returned by the service.
        See Also:
        AWS API Documentation
      • listEndpointsAsync

        Future<ListEndpointsResult> listEndpointsAsync(ListEndpointsRequest listEndpointsRequest,
         AsyncHandler<ListEndpointsRequest,ListEndpointsResult> asyncHandler)

        Gets a list of all existing endpoints that you've created. For information about endpoints, see Managing endpoints.

        Parameters:
        listEndpointsRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ListEndpoints operation returned by the service.
        See Also:
        AWS API Documentation
      • listEntityRecognizersAsync

        Future<ListEntityRecognizersResult> listEntityRecognizersAsync(ListEntityRecognizersRequest listEntityRecognizersRequest)

        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.

        Parameters:
        listEntityRecognizersRequest -
        Returns:
        A Java Future containing the result of the ListEntityRecognizers operation returned by the service.
        See Also:
        AWS API Documentation
      • listEntityRecognizersAsync

        Future<ListEntityRecognizersResult> listEntityRecognizersAsync(ListEntityRecognizersRequest listEntityRecognizersRequest,
         AsyncHandler<ListEntityRecognizersRequest,ListEntityRecognizersResult> asyncHandler)

        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.

        Parameters:
        listEntityRecognizersRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ListEntityRecognizers operation returned by the service.
        See Also:
        AWS API Documentation
      • listFlywheelsAsync

        Future<ListFlywheelsResult> listFlywheelsAsync(ListFlywheelsRequest listFlywheelsRequest)

        Gets a list of the flywheels that you have created.

        Parameters:
        listFlywheelsRequest -
        Returns:
        A Java Future containing the result of the ListFlywheels operation returned by the service.
        See Also:
        AWS API Documentation
      • listFlywheelsAsync

        Future<ListFlywheelsResult> listFlywheelsAsync(ListFlywheelsRequest listFlywheelsRequest,
         AsyncHandler<ListFlywheelsRequest,ListFlywheelsResult> asyncHandler)

        Gets a list of the flywheels that you have created.

        Parameters:
        listFlywheelsRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ListFlywheels operation returned by the service.
        See Also:
        AWS API Documentation
      • listTagsForResourceAsync

        Future<ListTagsForResourceResult> listTagsForResourceAsync(ListTagsForResourceRequest listTagsForResourceRequest,
         AsyncHandler<ListTagsForResourceRequest,ListTagsForResourceResult> asyncHandler)

        Lists all tags associated with a given Amazon Comprehend resource.

        Parameters:
        listTagsForResourceRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the ListTagsForResource operation returned by the service.
        See Also:
        AWS API Documentation
      • putResourcePolicyAsync

        Future<PutResourcePolicyResult> putResourcePolicyAsync(PutResourcePolicyRequest putResourcePolicyRequest)

        Attaches a resource-based policy to a custom model. You can use this policy to authorize an entity in another Amazon Web Services account to import the custom model, which replicates it in Amazon Comprehend in their account.

        Parameters:
        putResourcePolicyRequest -
        Returns:
        A Java Future containing the result of the PutResourcePolicy operation returned by the service.
        See Also:
        AWS API Documentation
      • putResourcePolicyAsync

        Future<PutResourcePolicyResult> putResourcePolicyAsync(PutResourcePolicyRequest putResourcePolicyRequest,
         AsyncHandler<PutResourcePolicyRequest,PutResourcePolicyResult> asyncHandler)

        Attaches a resource-based policy to a custom model. You can use this policy to authorize an entity in another Amazon Web Services account to import the custom model, which replicates it in Amazon Comprehend in their account.

        Parameters:
        putResourcePolicyRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the PutResourcePolicy operation returned by the service.
        See Also:
        AWS API Documentation
      • startDocumentClassificationJobAsync

        Future<StartDocumentClassificationJobResult> startDocumentClassificationJobAsync(StartDocumentClassificationJobRequest startDocumentClassificationJobRequest)

        Starts an asynchronous document classification job using a custom classification model. Use the DescribeDocumentClassificationJob operation to track the progress of the job.

        Parameters:
        startDocumentClassificationJobRequest -
        Returns:
        A Java Future containing the result of the StartDocumentClassificationJob operation returned by the service.
        See Also:
        AWS API Documentation
      • startDominantLanguageDetectionJobAsync

        Future<StartDominantLanguageDetectionJobResult> startDominantLanguageDetectionJobAsync(StartDominantLanguageDetectionJobRequest startDominantLanguageDetectionJobRequest)

        Starts an asynchronous dominant language detection job for a collection of documents. Use the operation to track the status of a job.

        Parameters:
        startDominantLanguageDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StartDominantLanguageDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • startEntitiesDetectionJobAsync

        Future<StartEntitiesDetectionJobResult> startEntitiesDetectionJobAsync(StartEntitiesDetectionJobRequest startEntitiesDetectionJobRequest)

        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.

        Parameters:
        startEntitiesDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StartEntitiesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • startEntitiesDetectionJobAsync

        Future<StartEntitiesDetectionJobResult> startEntitiesDetectionJobAsync(StartEntitiesDetectionJobRequest startEntitiesDetectionJobRequest,
         AsyncHandler<StartEntitiesDetectionJobRequest,StartEntitiesDetectionJobResult> asyncHandler)

        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.

        Parameters:
        startEntitiesDetectionJobRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StartEntitiesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • startFlywheelIterationAsync

        Future<StartFlywheelIterationResult> startFlywheelIterationAsync(StartFlywheelIterationRequest startFlywheelIterationRequest)

        Start the flywheel iteration.This operation uses any new datasets to train a new model version. For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        startFlywheelIterationRequest -
        Returns:
        A Java Future containing the result of the StartFlywheelIteration operation returned by the service.
        See Also:
        AWS API Documentation
      • startFlywheelIterationAsync

        Future<StartFlywheelIterationResult> startFlywheelIterationAsync(StartFlywheelIterationRequest startFlywheelIterationRequest,
         AsyncHandler<StartFlywheelIterationRequest,StartFlywheelIterationResult> asyncHandler)

        Start the flywheel iteration.This operation uses any new datasets to train a new model version. For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.

        Parameters:
        startFlywheelIterationRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StartFlywheelIteration operation returned by the service.
        See Also:
        AWS API Documentation
      • startKeyPhrasesDetectionJobAsync

        Future<StartKeyPhrasesDetectionJobResult> startKeyPhrasesDetectionJobAsync(StartKeyPhrasesDetectionJobRequest startKeyPhrasesDetectionJobRequest)

        Starts an asynchronous key phrase detection job for a collection of documents. Use the operation to track the status of a job.

        Parameters:
        startKeyPhrasesDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StartKeyPhrasesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • startSentimentDetectionJobAsync

        Future<StartSentimentDetectionJobResult> startSentimentDetectionJobAsync(StartSentimentDetectionJobRequest startSentimentDetectionJobRequest)

        Starts an asynchronous sentiment detection job for a collection of documents. Use the operation to track the status of a job.

        Parameters:
        startSentimentDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StartSentimentDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • startTargetedSentimentDetectionJobAsync

        Future<StartTargetedSentimentDetectionJobResult> startTargetedSentimentDetectionJobAsync(StartTargetedSentimentDetectionJobRequest startTargetedSentimentDetectionJobRequest)

        Starts an asynchronous targeted sentiment detection job for a collection of documents. Use the DescribeTargetedSentimentDetectionJob operation to track the status of a job.

        Parameters:
        startTargetedSentimentDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StartTargetedSentimentDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • startTopicsDetectionJobAsync

        Future<StartTopicsDetectionJobResult> startTopicsDetectionJobAsync(StartTopicsDetectionJobRequest startTopicsDetectionJobRequest)

        Starts an asynchronous topic detection job. Use the DescribeTopicDetectionJob operation to track the status of a job.

        Parameters:
        startTopicsDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StartTopicsDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • startTopicsDetectionJobAsync

        Future<StartTopicsDetectionJobResult> startTopicsDetectionJobAsync(StartTopicsDetectionJobRequest startTopicsDetectionJobRequest,
         AsyncHandler<StartTopicsDetectionJobRequest,StartTopicsDetectionJobResult> asyncHandler)

        Starts an asynchronous topic detection job. Use the DescribeTopicDetectionJob operation to track the status of a job.

        Parameters:
        startTopicsDetectionJobRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StartTopicsDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopDominantLanguageDetectionJobAsync

        Future<StopDominantLanguageDetectionJobResult> stopDominantLanguageDetectionJobAsync(StopDominantLanguageDetectionJobRequest stopDominantLanguageDetectionJobRequest)

        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.

        Parameters:
        stopDominantLanguageDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StopDominantLanguageDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopDominantLanguageDetectionJobAsync

        Future<StopDominantLanguageDetectionJobResult> stopDominantLanguageDetectionJobAsync(StopDominantLanguageDetectionJobRequest stopDominantLanguageDetectionJobRequest,
         AsyncHandler<StopDominantLanguageDetectionJobRequest,StopDominantLanguageDetectionJobResult> asyncHandler)

        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.

        Parameters:
        stopDominantLanguageDetectionJobRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StopDominantLanguageDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopEntitiesDetectionJobAsync

        Future<StopEntitiesDetectionJobResult> stopEntitiesDetectionJobAsync(StopEntitiesDetectionJobRequest stopEntitiesDetectionJobRequest)

        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.

        Parameters:
        stopEntitiesDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StopEntitiesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopEntitiesDetectionJobAsync

        Future<StopEntitiesDetectionJobResult> stopEntitiesDetectionJobAsync(StopEntitiesDetectionJobRequest stopEntitiesDetectionJobRequest,
         AsyncHandler<StopEntitiesDetectionJobRequest,StopEntitiesDetectionJobResult> asyncHandler)

        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.

        Parameters:
        stopEntitiesDetectionJobRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StopEntitiesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopKeyPhrasesDetectionJobAsync

        Future<StopKeyPhrasesDetectionJobResult> stopKeyPhrasesDetectionJobAsync(StopKeyPhrasesDetectionJobRequest stopKeyPhrasesDetectionJobRequest)

        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.

        Parameters:
        stopKeyPhrasesDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StopKeyPhrasesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopKeyPhrasesDetectionJobAsync

        Future<StopKeyPhrasesDetectionJobResult> stopKeyPhrasesDetectionJobAsync(StopKeyPhrasesDetectionJobRequest stopKeyPhrasesDetectionJobRequest,
         AsyncHandler<StopKeyPhrasesDetectionJobRequest,StopKeyPhrasesDetectionJobResult> asyncHandler)

        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.

        Parameters:
        stopKeyPhrasesDetectionJobRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StopKeyPhrasesDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopSentimentDetectionJobAsync

        Future<StopSentimentDetectionJobResult> stopSentimentDetectionJobAsync(StopSentimentDetectionJobRequest stopSentimentDetectionJobRequest)

        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.

        Parameters:
        stopSentimentDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StopSentimentDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopSentimentDetectionJobAsync

        Future<StopSentimentDetectionJobResult> stopSentimentDetectionJobAsync(StopSentimentDetectionJobRequest stopSentimentDetectionJobRequest,
         AsyncHandler<StopSentimentDetectionJobRequest,StopSentimentDetectionJobResult> asyncHandler)

        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.

        Parameters:
        stopSentimentDetectionJobRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StopSentimentDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopTargetedSentimentDetectionJobAsync

        Future<StopTargetedSentimentDetectionJobResult> stopTargetedSentimentDetectionJobAsync(StopTargetedSentimentDetectionJobRequest stopTargetedSentimentDetectionJobRequest)

        Stops a targeted 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.

        Parameters:
        stopTargetedSentimentDetectionJobRequest -
        Returns:
        A Java Future containing the result of the StopTargetedSentimentDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopTargetedSentimentDetectionJobAsync

        Future<StopTargetedSentimentDetectionJobResult> stopTargetedSentimentDetectionJobAsync(StopTargetedSentimentDetectionJobRequest stopTargetedSentimentDetectionJobRequest,
         AsyncHandler<StopTargetedSentimentDetectionJobRequest,StopTargetedSentimentDetectionJobResult> asyncHandler)

        Stops a targeted 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.

        Parameters:
        stopTargetedSentimentDetectionJobRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StopTargetedSentimentDetectionJob operation returned by the service.
        See Also:
        AWS API Documentation
      • stopTrainingDocumentClassifierAsync

        Future<StopTrainingDocumentClassifierResult> stopTrainingDocumentClassifierAsync(StopTrainingDocumentClassifierRequest stopTrainingDocumentClassifierRequest)

        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.

        Parameters:
        stopTrainingDocumentClassifierRequest -
        Returns:
        A Java Future containing the result of the StopTrainingDocumentClassifier operation returned by the service.
        See Also:
        AWS API Documentation
      • stopTrainingDocumentClassifierAsync

        Future<StopTrainingDocumentClassifierResult> stopTrainingDocumentClassifierAsync(StopTrainingDocumentClassifierRequest stopTrainingDocumentClassifierRequest,
         AsyncHandler<StopTrainingDocumentClassifierRequest,StopTrainingDocumentClassifierResult> asyncHandler)

        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.

        Parameters:
        stopTrainingDocumentClassifierRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StopTrainingDocumentClassifier operation returned by the service.
        See Also:
        AWS API Documentation
      • stopTrainingEntityRecognizerAsync

        Future<StopTrainingEntityRecognizerResult> stopTrainingEntityRecognizerAsync(StopTrainingEntityRecognizerRequest stopTrainingEntityRecognizerRequest)

        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.

        Parameters:
        stopTrainingEntityRecognizerRequest -
        Returns:
        A Java Future containing the result of the StopTrainingEntityRecognizer operation returned by the service.
        See Also:
        AWS API Documentation
      • stopTrainingEntityRecognizerAsync

        Future<StopTrainingEntityRecognizerResult> stopTrainingEntityRecognizerAsync(StopTrainingEntityRecognizerRequest stopTrainingEntityRecognizerRequest,
         AsyncHandler<StopTrainingEntityRecognizerRequest,StopTrainingEntityRecognizerResult> asyncHandler)

        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.

        Parameters:
        stopTrainingEntityRecognizerRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the StopTrainingEntityRecognizer operation returned by the service.
        See Also:
        AWS API Documentation
      • tagResourceAsync

        Future<TagResourceResult> tagResourceAsync(TagResourceRequest tagResourceRequest)

        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.

        Parameters:
        tagResourceRequest -
        Returns:
        A Java Future containing the result of the TagResource operation returned by the service.
        See Also:
        AWS API Documentation
      • tagResourceAsync

        Future<TagResourceResult> tagResourceAsync(TagResourceRequest tagResourceRequest,
         AsyncHandler<TagResourceRequest,TagResourceResult> asyncHandler)

        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.

        Parameters:
        tagResourceRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the TagResource operation returned by the service.
        See Also:
        AWS API Documentation
      • untagResourceAsync

        Future<UntagResourceResult> untagResourceAsync(UntagResourceRequest untagResourceRequest)

        Removes a specific tag associated with an Amazon Comprehend resource.

        Parameters:
        untagResourceRequest -
        Returns:
        A Java Future containing the result of the UntagResource operation returned by the service.
        See Also:
        AWS API Documentation
      • untagResourceAsync

        Future<UntagResourceResult> untagResourceAsync(UntagResourceRequest untagResourceRequest,
         AsyncHandler<UntagResourceRequest,UntagResourceResult> asyncHandler)

        Removes a specific tag associated with an Amazon Comprehend resource.

        Parameters:
        untagResourceRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the UntagResource operation returned by the service.
        See Also:
        AWS API Documentation
      • updateEndpointAsync

        Future<UpdateEndpointResult> updateEndpointAsync(UpdateEndpointRequest updateEndpointRequest,
         AsyncHandler<UpdateEndpointRequest,UpdateEndpointResult> asyncHandler)

        Updates information about the specified endpoint. For information about endpoints, see Managing endpoints.

        Parameters:
        updateEndpointRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the UpdateEndpoint operation returned by the service.
        See Also:
        AWS API Documentation
      • updateFlywheelAsync

        Future<UpdateFlywheelResult> updateFlywheelAsync(UpdateFlywheelRequest updateFlywheelRequest)

        Update the configuration information for an existing flywheel.

        Parameters:
        updateFlywheelRequest -
        Returns:
        A Java Future containing the result of the UpdateFlywheel operation returned by the service.
        See Also:
        AWS API Documentation
      • updateFlywheelAsync

        Future<UpdateFlywheelResult> updateFlywheelAsync(UpdateFlywheelRequest updateFlywheelRequest,
         AsyncHandler<UpdateFlywheelRequest,UpdateFlywheelResult> asyncHandler)

        Update the configuration information for an existing flywheel.

        Parameters:
        updateFlywheelRequest -
        asyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an implementation of the callback methods in this interface to receive notification of successful or unsuccessful completion of the operation.
        Returns:
        A Java Future containing the result of the UpdateFlywheel operation returned by the service.
        See Also:
        AWS API Documentation
Skip navigation links
  • Summary:
  • Nested |
  • Field |
  • Constr |
  • Method
  • Detail:
  • Field |
  • Constr |
  • Method

AltStyle によって変換されたページ (->オリジナル) /