@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public interface AmazonLookoutEquipment
Note: Do not directly implement this interface, new methods are added to it regularly. Extend from
AbstractAmazonLookoutEquipment
instead.
Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify anomalies in machines from sensor data for use in predictive maintenance.
Modifier and Type | Field and Description |
---|---|
static String |
ENDPOINT_PREFIX
The region metadata service name for computing region endpoints.
|
Modifier and Type | Method and Description |
---|---|
CreateDatasetResult |
createDataset(CreateDatasetRequest createDatasetRequest)
Creates a container for a collection of data being ingested for analysis.
|
CreateInferenceSchedulerResult |
createInferenceScheduler(CreateInferenceSchedulerRequest createInferenceSchedulerRequest)
Creates a scheduled inference.
|
CreateLabelResult |
createLabel(CreateLabelRequest createLabelRequest)
Creates a label for an event.
|
CreateLabelGroupResult |
createLabelGroup(CreateLabelGroupRequest createLabelGroupRequest)
Creates a group of labels.
|
CreateModelResult |
createModel(CreateModelRequest createModelRequest)
Creates an ML model for data inference.
|
DeleteDatasetResult |
deleteDataset(DeleteDatasetRequest deleteDatasetRequest)
Deletes a dataset and associated artifacts.
|
DeleteInferenceSchedulerResult |
deleteInferenceScheduler(DeleteInferenceSchedulerRequest deleteInferenceSchedulerRequest)
Deletes an inference scheduler that has been set up.
|
DeleteLabelResult |
deleteLabel(DeleteLabelRequest deleteLabelRequest)
Deletes a label.
|
DeleteLabelGroupResult |
deleteLabelGroup(DeleteLabelGroupRequest deleteLabelGroupRequest)
Deletes a group of labels.
|
DeleteModelResult |
deleteModel(DeleteModelRequest deleteModelRequest)
Deletes an ML model currently available for Amazon Lookout for Equipment.
|
DescribeDataIngestionJobResult |
describeDataIngestionJob(DescribeDataIngestionJobRequest describeDataIngestionJobRequest)
Provides information on a specific data ingestion job such as creation time, dataset ARN, and status.
|
DescribeDatasetResult |
describeDataset(DescribeDatasetRequest describeDatasetRequest)
Provides a JSON description of the data in each time series dataset, including names, column names, and data
types.
|
DescribeInferenceSchedulerResult |
describeInferenceScheduler(DescribeInferenceSchedulerRequest describeInferenceSchedulerRequest)
Specifies information about the inference scheduler being used, including name, model, status, and associated
metadata
|
DescribeLabelResult |
describeLabel(DescribeLabelRequest describeLabelRequest)
Returns the name of the label.
|
DescribeLabelGroupResult |
describeLabelGroup(DescribeLabelGroupRequest describeLabelGroupRequest)
Returns information about the label group.
|
DescribeModelResult |
describeModel(DescribeModelRequest describeModelRequest)
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.
|
ResponseMetadata |
getCachedResponseMetadata(AmazonWebServiceRequest request)
Returns additional metadata for a previously executed successful request, typically used for debugging issues
where a service isn't acting as expected.
|
ListDataIngestionJobsResult |
listDataIngestionJobs(ListDataIngestionJobsRequest listDataIngestionJobsRequest)
Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location of the input data,
status, and so on.
|
ListDatasetsResult |
listDatasets(ListDatasetsRequest listDatasetsRequest)
Lists all datasets currently available in your account, filtering on the dataset name.
|
ListInferenceEventsResult |
listInferenceEvents(ListInferenceEventsRequest listInferenceEventsRequest)
Lists all inference events that have been found for the specified inference scheduler.
|
ListInferenceExecutionsResult |
listInferenceExecutions(ListInferenceExecutionsRequest listInferenceExecutionsRequest)
Lists all inference executions that have been performed by the specified inference scheduler.
|
ListInferenceSchedulersResult |
listInferenceSchedulers(ListInferenceSchedulersRequest listInferenceSchedulersRequest)
Retrieves a list of all inference schedulers currently available for your account.
|
ListLabelGroupsResult |
listLabelGroups(ListLabelGroupsRequest listLabelGroupsRequest)
Returns a list of the label groups.
|
ListLabelsResult |
listLabels(ListLabelsRequest listLabelsRequest)
Provides a list of labels.
|
ListModelsResult |
listModels(ListModelsRequest listModelsRequest)
Generates a list of all models in the account, including model name and ARN, dataset, and status.
|
ListSensorStatisticsResult |
listSensorStatistics(ListSensorStatisticsRequest listSensorStatisticsRequest)
Lists statistics about the data collected for each of the sensors that have been successfully ingested in the
particular dataset.
|
ListTagsForResourceResult |
listTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest)
Lists all the tags for a specified resource, including key and value.
|
void |
shutdown()
Shuts down this client object, releasing any resources that might be held open.
|
StartDataIngestionJobResult |
startDataIngestionJob(StartDataIngestionJobRequest startDataIngestionJobRequest)
Starts a data ingestion job.
|
StartInferenceSchedulerResult |
startInferenceScheduler(StartInferenceSchedulerRequest startInferenceSchedulerRequest)
Starts an inference scheduler.
|
StopInferenceSchedulerResult |
stopInferenceScheduler(StopInferenceSchedulerRequest stopInferenceSchedulerRequest)
Stops an inference scheduler.
|
TagResourceResult |
tagResource(TagResourceRequest tagResourceRequest)
Associates a given tag to a resource in your account.
|
UntagResourceResult |
untagResource(UntagResourceRequest untagResourceRequest)
Removes a specific tag from a given resource.
|
UpdateInferenceSchedulerResult |
updateInferenceScheduler(UpdateInferenceSchedulerRequest updateInferenceSchedulerRequest)
Updates an inference scheduler.
|
UpdateLabelGroupResult |
updateLabelGroup(UpdateLabelGroupRequest updateLabelGroupRequest)
Updates the label group.
|
static final String ENDPOINT_PREFIX
CreateDatasetResult createDataset(CreateDatasetRequest createDatasetRequest)
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.
createDatasetRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ThrottlingException
- The request was denied due to request throttling.ServiceQuotaExceededException
- Resource limitations have been exceeded.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.CreateInferenceSchedulerResult createInferenceScheduler(CreateInferenceSchedulerRequest createInferenceSchedulerRequest)
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.
createInferenceSchedulerRequest
- ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ServiceQuotaExceededException
- Resource limitations have been exceeded.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.CreateLabelResult createLabel(CreateLabelRequest createLabelRequest)
Creates a label for an event.
createLabelRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ThrottlingException
- The request was denied due to request throttling.ServiceQuotaExceededException
- Resource limitations have been exceeded.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.CreateLabelGroupResult createLabelGroup(CreateLabelGroupRequest createLabelGroupRequest)
Creates a group of labels.
createLabelGroupRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ThrottlingException
- The request was denied due to request throttling.ServiceQuotaExceededException
- Resource limitations have been exceeded.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.CreateModelResult createModel(CreateModelRequest createModelRequest)
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.
createModelRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ThrottlingException
- The request was denied due to request throttling.ServiceQuotaExceededException
- Resource limitations have been exceeded.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.AccessDeniedException
- The request could not be completed because you do not have access to the resource.DeleteDatasetResult deleteDataset(DeleteDatasetRequest deleteDatasetRequest)
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.
deleteDatasetRequest
- ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.AccessDeniedException
- The request could not be completed because you do not have access to the resource.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.DeleteInferenceSchedulerResult deleteInferenceScheduler(DeleteInferenceSchedulerRequest deleteInferenceSchedulerRequest)
Deletes an inference scheduler that has been set up. Already processed output results are not affected.
deleteInferenceSchedulerRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.DeleteLabelResult deleteLabel(DeleteLabelRequest deleteLabelRequest)
Deletes a label.
deleteLabelRequest
- ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.AccessDeniedException
- The request could not be completed because you do not have access to the resource.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.DeleteLabelGroupResult deleteLabelGroup(DeleteLabelGroupRequest deleteLabelGroupRequest)
Deletes a group of labels.
deleteLabelGroupRequest
- ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.AccessDeniedException
- The request could not be completed because you do not have access to the resource.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.DeleteModelResult deleteModel(DeleteModelRequest deleteModelRequest)
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.
deleteModelRequest
- ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.AccessDeniedException
- The request could not be completed because you do not have access to the resource.ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.DescribeDataIngestionJobResult describeDataIngestionJob(DescribeDataIngestionJobRequest describeDataIngestionJobRequest)
Provides information on a specific data ingestion job such as creation time, dataset ARN, and status.
describeDataIngestionJobRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.DescribeDatasetResult describeDataset(DescribeDatasetRequest describeDatasetRequest)
Provides a JSON description of the data in each time series dataset, including names, column names, and data types.
describeDatasetRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.DescribeInferenceSchedulerResult describeInferenceScheduler(DescribeInferenceSchedulerRequest describeInferenceSchedulerRequest)
Specifies information about the inference scheduler being used, including name, model, status, and associated metadata
describeInferenceSchedulerRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.DescribeLabelResult describeLabel(DescribeLabelRequest describeLabelRequest)
Returns the name of the label.
describeLabelRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.DescribeLabelGroupResult describeLabelGroup(DescribeLabelGroupRequest describeLabelGroupRequest)
Returns information about the label group.
describeLabelGroupRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.DescribeModelResult describeModel(DescribeModelRequest describeModelRequest)
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.
describeModelRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListDataIngestionJobsResult listDataIngestionJobs(ListDataIngestionJobsRequest listDataIngestionJobsRequest)
Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location of the input data, status, and so on.
listDataIngestionJobsRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListDatasetsResult listDatasets(ListDatasetsRequest listDatasetsRequest)
Lists all datasets currently available in your account, filtering on the dataset name.
listDatasetsRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListInferenceEventsResult listInferenceEvents(ListInferenceEventsRequest listInferenceEventsRequest)
Lists all inference events that have been found for the specified inference scheduler.
listInferenceEventsRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListInferenceExecutionsResult listInferenceExecutions(ListInferenceExecutionsRequest listInferenceExecutionsRequest)
Lists all inference executions that have been performed by the specified inference scheduler.
listInferenceExecutionsRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListInferenceSchedulersResult listInferenceSchedulers(ListInferenceSchedulersRequest listInferenceSchedulersRequest)
Retrieves a list of all inference schedulers currently available for your account.
listInferenceSchedulersRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListLabelGroupsResult listLabelGroups(ListLabelGroupsRequest listLabelGroupsRequest)
Returns a list of the label groups.
listLabelGroupsRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListLabelsResult listLabels(ListLabelsRequest listLabelsRequest)
Provides a list of labels.
listLabelsRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListModelsResult listModels(ListModelsRequest listModelsRequest)
Generates a list of all models in the account, including model name and ARN, dataset, and status.
listModelsRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListSensorStatisticsResult listSensorStatistics(ListSensorStatisticsRequest listSensorStatisticsRequest)
Lists statistics about the data collected for each of the sensors that have been successfully ingested in the particular dataset. Can also be used to retreive Sensor Statistics for a previous ingestion job.
listSensorStatisticsRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.ListTagsForResourceResult listTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest)
Lists all the tags for a specified resource, including key and value.
listTagsForResourceRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.StartDataIngestionJobResult startDataIngestionJob(StartDataIngestionJobRequest startDataIngestionJobRequest)
Starts a data ingestion job. Amazon Lookout for Equipment returns the job status.
startDataIngestionJobRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ThrottlingException
- The request was denied due to request throttling.ServiceQuotaExceededException
- Resource limitations have been exceeded.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.StartInferenceSchedulerResult startInferenceScheduler(StartInferenceSchedulerRequest startInferenceSchedulerRequest)
Starts an inference scheduler.
startInferenceSchedulerRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.StopInferenceSchedulerResult stopInferenceScheduler(StopInferenceSchedulerRequest stopInferenceSchedulerRequest)
Stops an inference scheduler.
stopInferenceSchedulerRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.TagResourceResult tagResource(TagResourceRequest tagResourceRequest)
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.
tagResourceRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ServiceQuotaExceededException
- Resource limitations have been exceeded.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.UntagResourceResult untagResource(UntagResourceRequest untagResourceRequest)
Removes a specific tag from a given resource. The tag is specified by its key.
untagResourceRequest
- ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.UpdateInferenceSchedulerResult updateInferenceScheduler(UpdateInferenceSchedulerRequest updateInferenceSchedulerRequest)
Updates an inference scheduler.
updateInferenceSchedulerRequest
- ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.UpdateLabelGroupResult updateLabelGroup(UpdateLabelGroupRequest updateLabelGroupRequest)
Updates the label group.
updateLabelGroupRequest
- ConflictException
- The request could not be completed due to a conflict with the current state of the target resource.ResourceNotFoundException
- The resource requested could not be found. Verify the resource ID and retry your request.ValidationException
- The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related AWS service
that's being utilized.ThrottlingException
- The request was denied due to request throttling.AccessDeniedException
- The request could not be completed because you do not have access to the resource.InternalServerException
- Processing of the request has failed because of an unknown error, exception or failure.void shutdown()
ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic information for an executed request, you should use this method to retrieve it as soon as possible after executing a request.
request
- The originally executed request.