@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AbstractAmazonLookoutEquipmentAsync extends AbstractAmazonLookoutEquipment implements AmazonLookoutEquipmentAsync
AmazonLookoutEquipmentAsync
. Convenient method forms pass through to the
corresponding overload that takes a request object and an AsyncHandler
, which throws an
UnsupportedOperationException
.ENDPOINT_PREFIX
createDataset, createInferenceScheduler, createModel, deleteDataset, deleteInferenceScheduler, deleteModel, describeDataIngestionJob, describeDataset, describeInferenceScheduler, describeModel, getCachedResponseMetadata, listDataIngestionJobs, listDatasets, listInferenceExecutions, listInferenceSchedulers, listModels, listTagsForResource, shutdown, startDataIngestionJob, startInferenceScheduler, stopInferenceScheduler, tagResource, untagResource, updateInferenceScheduler
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
createDataset, createInferenceScheduler, createModel, deleteDataset, deleteInferenceScheduler, deleteModel, describeDataIngestionJob, describeDataset, describeInferenceScheduler, describeModel, getCachedResponseMetadata, listDataIngestionJobs, listDatasets, listInferenceExecutions, listInferenceSchedulers, listModels, listTagsForResource, shutdown, startDataIngestionJob, startInferenceScheduler, stopInferenceScheduler, tagResource, untagResource, updateInferenceScheduler
public Future<CreateDatasetResult> createDatasetAsync(CreateDatasetRequest request)
AmazonLookoutEquipmentAsync
Creates a container for a collection of data being ingested for analysis. The dataset contains the metadata describing where the data is and what the data actually looks like. In other words, it contains the location of the data source, the data schema, and other information. A dataset also contains any tags associated with the ingested data.
createDatasetAsync
in interface AmazonLookoutEquipmentAsync
public Future<CreateDatasetResult> createDatasetAsync(CreateDatasetRequest request, AsyncHandler<CreateDatasetRequest,CreateDatasetResult> asyncHandler)
AmazonLookoutEquipmentAsync
Creates a container for a collection of data being ingested for analysis. The dataset contains the metadata describing where the data is and what the data actually looks like. In other words, it contains the location of the data source, the data schema, and other information. A dataset also contains any tags associated with the ingested data.
createDatasetAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<CreateInferenceSchedulerResult> createInferenceSchedulerAsync(CreateInferenceSchedulerRequest request)
AmazonLookoutEquipmentAsync
Creates a scheduled inference. Scheduling an inference is setting up a continuous real-time inference plan to analyze new measurement data. When setting up the schedule, you provide an S3 bucket location for the input data, assign it a delimiter between separate entries in the data, set an offset delay if desired, and set the frequency of inferencing. You must also provide an S3 bucket location for the output data.
createInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
public Future<CreateInferenceSchedulerResult> createInferenceSchedulerAsync(CreateInferenceSchedulerRequest request, AsyncHandler<CreateInferenceSchedulerRequest,CreateInferenceSchedulerResult> asyncHandler)
AmazonLookoutEquipmentAsync
Creates a scheduled inference. Scheduling an inference is setting up a continuous real-time inference plan to analyze new measurement data. When setting up the schedule, you provide an S3 bucket location for the input data, assign it a delimiter between separate entries in the data, set an offset delay if desired, and set the frequency of inferencing. You must also provide an S3 bucket location for the output data.
createInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<CreateModelResult> createModelAsync(CreateModelRequest request)
AmazonLookoutEquipmentAsync
Creates an ML model for data inference.
A machine-learning (ML) model is a mathematical model that finds patterns in your data. In Amazon Lookout for Equipment, the model learns the patterns of normal behavior and detects abnormal behavior that could be potential equipment failure (or maintenance events). The models are made by analyzing normal data and abnormalities in machine behavior that have already occurred.
Your model is trained using a portion of the data from your dataset and uses that data to learn patterns of normal behavior and abnormal patterns that lead to equipment failure. Another portion of the data is used to evaluate the model's accuracy.
createModelAsync
in interface AmazonLookoutEquipmentAsync
public Future<CreateModelResult> createModelAsync(CreateModelRequest request, AsyncHandler<CreateModelRequest,CreateModelResult> asyncHandler)
AmazonLookoutEquipmentAsync
Creates an ML model for data inference.
A machine-learning (ML) model is a mathematical model that finds patterns in your data. In Amazon Lookout for Equipment, the model learns the patterns of normal behavior and detects abnormal behavior that could be potential equipment failure (or maintenance events). The models are made by analyzing normal data and abnormalities in machine behavior that have already occurred.
Your model is trained using a portion of the data from your dataset and uses that data to learn patterns of normal behavior and abnormal patterns that lead to equipment failure. Another portion of the data is used to evaluate the model's accuracy.
createModelAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<DeleteDatasetResult> deleteDatasetAsync(DeleteDatasetRequest request)
AmazonLookoutEquipmentAsync
Deletes a dataset and associated artifacts. The operation will check to see if any inference scheduler or data ingestion job is currently using the dataset, and if there isn't, the dataset, its metadata, and any associated data stored in S3 will be deleted. This does not affect any models that used this dataset for training and evaluation, but does prevent it from being used in the future.
deleteDatasetAsync
in interface AmazonLookoutEquipmentAsync
public Future<DeleteDatasetResult> deleteDatasetAsync(DeleteDatasetRequest request, AsyncHandler<DeleteDatasetRequest,DeleteDatasetResult> asyncHandler)
AmazonLookoutEquipmentAsync
Deletes a dataset and associated artifacts. The operation will check to see if any inference scheduler or data ingestion job is currently using the dataset, and if there isn't, the dataset, its metadata, and any associated data stored in S3 will be deleted. This does not affect any models that used this dataset for training and evaluation, but does prevent it from being used in the future.
deleteDatasetAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<DeleteInferenceSchedulerResult> deleteInferenceSchedulerAsync(DeleteInferenceSchedulerRequest request)
AmazonLookoutEquipmentAsync
Deletes an inference scheduler that has been set up. Already processed output results are not affected.
deleteInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
public Future<DeleteInferenceSchedulerResult> deleteInferenceSchedulerAsync(DeleteInferenceSchedulerRequest request, AsyncHandler<DeleteInferenceSchedulerRequest,DeleteInferenceSchedulerResult> asyncHandler)
AmazonLookoutEquipmentAsync
Deletes an inference scheduler that has been set up. Already processed output results are not affected.
deleteInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<DeleteModelResult> deleteModelAsync(DeleteModelRequest request)
AmazonLookoutEquipmentAsync
Deletes an ML model currently available for Amazon Lookout for Equipment. This will prevent it from being used with an inference scheduler, even one that is already set up.
deleteModelAsync
in interface AmazonLookoutEquipmentAsync
public Future<DeleteModelResult> deleteModelAsync(DeleteModelRequest request, AsyncHandler<DeleteModelRequest,DeleteModelResult> asyncHandler)
AmazonLookoutEquipmentAsync
Deletes an ML model currently available for Amazon Lookout for Equipment. This will prevent it from being used with an inference scheduler, even one that is already set up.
deleteModelAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<DescribeDataIngestionJobResult> describeDataIngestionJobAsync(DescribeDataIngestionJobRequest request)
AmazonLookoutEquipmentAsync
Provides information on a specific data ingestion job such as creation time, dataset ARN, status, and so on.
describeDataIngestionJobAsync
in interface AmazonLookoutEquipmentAsync
public Future<DescribeDataIngestionJobResult> describeDataIngestionJobAsync(DescribeDataIngestionJobRequest request, AsyncHandler<DescribeDataIngestionJobRequest,DescribeDataIngestionJobResult> asyncHandler)
AmazonLookoutEquipmentAsync
Provides information on a specific data ingestion job such as creation time, dataset ARN, status, and so on.
describeDataIngestionJobAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<DescribeDatasetResult> describeDatasetAsync(DescribeDatasetRequest request)
AmazonLookoutEquipmentAsync
Provides a JSON description of the data that is in each time series dataset, including names, column names, and data types.
describeDatasetAsync
in interface AmazonLookoutEquipmentAsync
public Future<DescribeDatasetResult> describeDatasetAsync(DescribeDatasetRequest request, AsyncHandler<DescribeDatasetRequest,DescribeDatasetResult> asyncHandler)
AmazonLookoutEquipmentAsync
Provides a JSON description of the data that is in each time series dataset, including names, column names, and data types.
describeDatasetAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<DescribeInferenceSchedulerResult> describeInferenceSchedulerAsync(DescribeInferenceSchedulerRequest request)
AmazonLookoutEquipmentAsync
Specifies information about the inference scheduler being used, including name, model, status, and associated metadata
describeInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
public Future<DescribeInferenceSchedulerResult> describeInferenceSchedulerAsync(DescribeInferenceSchedulerRequest request, AsyncHandler<DescribeInferenceSchedulerRequest,DescribeInferenceSchedulerResult> asyncHandler)
AmazonLookoutEquipmentAsync
Specifies information about the inference scheduler being used, including name, model, status, and associated metadata
describeInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<DescribeModelResult> describeModelAsync(DescribeModelRequest request)
AmazonLookoutEquipmentAsync
Provides a JSON containing the overall information about a specific ML model, including model name and ARN, dataset, training and evaluation information, status, and so on.
describeModelAsync
in interface AmazonLookoutEquipmentAsync
public Future<DescribeModelResult> describeModelAsync(DescribeModelRequest request, AsyncHandler<DescribeModelRequest,DescribeModelResult> asyncHandler)
AmazonLookoutEquipmentAsync
Provides a JSON containing the overall information about a specific ML model, including model name and ARN, dataset, training and evaluation information, status, and so on.
describeModelAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<ListDataIngestionJobsResult> listDataIngestionJobsAsync(ListDataIngestionJobsRequest request)
AmazonLookoutEquipmentAsync
Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location of the input data, status, and so on.
listDataIngestionJobsAsync
in interface AmazonLookoutEquipmentAsync
public Future<ListDataIngestionJobsResult> listDataIngestionJobsAsync(ListDataIngestionJobsRequest request, AsyncHandler<ListDataIngestionJobsRequest,ListDataIngestionJobsResult> asyncHandler)
AmazonLookoutEquipmentAsync
Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location of the input data, status, and so on.
listDataIngestionJobsAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<ListDatasetsResult> listDatasetsAsync(ListDatasetsRequest request)
AmazonLookoutEquipmentAsync
Lists all datasets currently available in your account, filtering on the dataset name.
listDatasetsAsync
in interface AmazonLookoutEquipmentAsync
public Future<ListDatasetsResult> listDatasetsAsync(ListDatasetsRequest request, AsyncHandler<ListDatasetsRequest,ListDatasetsResult> asyncHandler)
AmazonLookoutEquipmentAsync
Lists all datasets currently available in your account, filtering on the dataset name.
listDatasetsAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<ListInferenceExecutionsResult> listInferenceExecutionsAsync(ListInferenceExecutionsRequest request)
AmazonLookoutEquipmentAsync
Lists all inference executions that have been performed by the specified inference scheduler.
listInferenceExecutionsAsync
in interface AmazonLookoutEquipmentAsync
public Future<ListInferenceExecutionsResult> listInferenceExecutionsAsync(ListInferenceExecutionsRequest request, AsyncHandler<ListInferenceExecutionsRequest,ListInferenceExecutionsResult> asyncHandler)
AmazonLookoutEquipmentAsync
Lists all inference executions that have been performed by the specified inference scheduler.
listInferenceExecutionsAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<ListInferenceSchedulersResult> listInferenceSchedulersAsync(ListInferenceSchedulersRequest request)
AmazonLookoutEquipmentAsync
Retrieves a list of all inference schedulers currently available for your account.
listInferenceSchedulersAsync
in interface AmazonLookoutEquipmentAsync
public Future<ListInferenceSchedulersResult> listInferenceSchedulersAsync(ListInferenceSchedulersRequest request, AsyncHandler<ListInferenceSchedulersRequest,ListInferenceSchedulersResult> asyncHandler)
AmazonLookoutEquipmentAsync
Retrieves a list of all inference schedulers currently available for your account.
listInferenceSchedulersAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<ListModelsResult> listModelsAsync(ListModelsRequest request)
AmazonLookoutEquipmentAsync
Generates a list of all models in the account, including model name and ARN, dataset, and status.
listModelsAsync
in interface AmazonLookoutEquipmentAsync
public Future<ListModelsResult> listModelsAsync(ListModelsRequest request, AsyncHandler<ListModelsRequest,ListModelsResult> asyncHandler)
AmazonLookoutEquipmentAsync
Generates a list of all models in the account, including model name and ARN, dataset, and status.
listModelsAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<ListTagsForResourceResult> listTagsForResourceAsync(ListTagsForResourceRequest request)
AmazonLookoutEquipmentAsync
Lists all the tags for a specified resource, including key and value.
listTagsForResourceAsync
in interface AmazonLookoutEquipmentAsync
public Future<ListTagsForResourceResult> listTagsForResourceAsync(ListTagsForResourceRequest request, AsyncHandler<ListTagsForResourceRequest,ListTagsForResourceResult> asyncHandler)
AmazonLookoutEquipmentAsync
Lists all the tags for a specified resource, including key and value.
listTagsForResourceAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<StartDataIngestionJobResult> startDataIngestionJobAsync(StartDataIngestionJobRequest request)
AmazonLookoutEquipmentAsync
Starts a data ingestion job. Amazon Lookout for Equipment returns the job status.
startDataIngestionJobAsync
in interface AmazonLookoutEquipmentAsync
public Future<StartDataIngestionJobResult> startDataIngestionJobAsync(StartDataIngestionJobRequest request, AsyncHandler<StartDataIngestionJobRequest,StartDataIngestionJobResult> asyncHandler)
AmazonLookoutEquipmentAsync
Starts a data ingestion job. Amazon Lookout for Equipment returns the job status.
startDataIngestionJobAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<StartInferenceSchedulerResult> startInferenceSchedulerAsync(StartInferenceSchedulerRequest request)
AmazonLookoutEquipmentAsync
Starts an inference scheduler.
startInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
public Future<StartInferenceSchedulerResult> startInferenceSchedulerAsync(StartInferenceSchedulerRequest request, AsyncHandler<StartInferenceSchedulerRequest,StartInferenceSchedulerResult> asyncHandler)
AmazonLookoutEquipmentAsync
Starts an inference scheduler.
startInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<StopInferenceSchedulerResult> stopInferenceSchedulerAsync(StopInferenceSchedulerRequest request)
AmazonLookoutEquipmentAsync
Stops an inference scheduler.
stopInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
public Future<StopInferenceSchedulerResult> stopInferenceSchedulerAsync(StopInferenceSchedulerRequest request, AsyncHandler<StopInferenceSchedulerRequest,StopInferenceSchedulerResult> asyncHandler)
AmazonLookoutEquipmentAsync
Stops an inference scheduler.
stopInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<TagResourceResult> tagResourceAsync(TagResourceRequest request)
AmazonLookoutEquipmentAsync
Associates a given tag to a resource in your account. A tag is a key-value pair which can be added to an Amazon Lookout for Equipment resource as metadata. Tags can be used for organizing your resources as well as helping you to search and filter by tag. Multiple tags can be added to a resource, either when you create it, or later. Up to 50 tags can be associated with each resource.
tagResourceAsync
in interface AmazonLookoutEquipmentAsync
public Future<TagResourceResult> tagResourceAsync(TagResourceRequest request, AsyncHandler<TagResourceRequest,TagResourceResult> asyncHandler)
AmazonLookoutEquipmentAsync
Associates a given tag to a resource in your account. A tag is a key-value pair which can be added to an Amazon Lookout for Equipment resource as metadata. Tags can be used for organizing your resources as well as helping you to search and filter by tag. Multiple tags can be added to a resource, either when you create it, or later. Up to 50 tags can be associated with each resource.
tagResourceAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<UntagResourceResult> untagResourceAsync(UntagResourceRequest request)
AmazonLookoutEquipmentAsync
Removes a specific tag from a given resource. The tag is specified by its key.
untagResourceAsync
in interface AmazonLookoutEquipmentAsync
public Future<UntagResourceResult> untagResourceAsync(UntagResourceRequest request, AsyncHandler<UntagResourceRequest,UntagResourceResult> asyncHandler)
AmazonLookoutEquipmentAsync
Removes a specific tag from a given resource. The tag is specified by its key.
untagResourceAsync
in interface AmazonLookoutEquipmentAsync
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.public Future<UpdateInferenceSchedulerResult> updateInferenceSchedulerAsync(UpdateInferenceSchedulerRequest request)
AmazonLookoutEquipmentAsync
Updates an inference scheduler.
updateInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
public Future<UpdateInferenceSchedulerResult> updateInferenceSchedulerAsync(UpdateInferenceSchedulerRequest request, AsyncHandler<UpdateInferenceSchedulerRequest,UpdateInferenceSchedulerResult> asyncHandler)
AmazonLookoutEquipmentAsync
Updates an inference scheduler.
updateInferenceSchedulerAsync
in interface AmazonLookoutEquipmentAsync
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.