We announced the upcoming end-of-support for AWS SDK for JavaScript v2.
We recommend that you migrate to AWS SDK for JavaScript v3. For dates, additional details, and information on how to migrate, please refer to the linked announcement.

Class: AWS.LookoutVision

Inherits:
AWS.Service show all
Identifier:
lookoutvision
API Version:
2020-11-20
Defined in:
(unknown)

Overview

Constructs a service interface object. Each API operation is exposed as a function on service.

Service Description

This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors.

Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. It uses computer vision to identify missing components in an industrial product, damage to vehicles or structures, irregularities in production lines, and even minuscule defects in silicon wafers — or any other physical item where quality is important such as a missing capacitor on printed circuit boards.

Sending a Request Using LookoutVision

var lookoutvision = new AWS.LookoutVision();
lookoutvision.createDataset(params, function (err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Locking the API Version

In order to ensure that the LookoutVision object uses this specific API, you can construct the object by passing the apiVersion option to the constructor:

var lookoutvision = new AWS.LookoutVision({apiVersion: '2020-11-20'});

You can also set the API version globally in AWS.config.apiVersions using the lookoutvision service identifier:

AWS.config.apiVersions = {
  lookoutvision: '2020-11-20',
  // other service API versions
};

var lookoutvision = new AWS.LookoutVision();

Version:

  • 2020-11-20

Constructor Summary collapse

Property Summary collapse

Properties inherited from AWS.Service

apiVersions

Method Summary collapse

Methods inherited from AWS.Service

makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService

Constructor Details

new AWS.LookoutVision(options = {}) ⇒ Object

Constructs a service object. This object has one method for each API operation.

Examples:

Constructing a LookoutVision object

var lookoutvision = new AWS.LookoutVision({apiVersion: '2020-11-20'});

Options Hash (options):

  • params (map)

    An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.

  • endpoint (String|AWS.Endpoint)

    The endpoint URI to send requests to. The default endpoint is built from the configured region. The endpoint should be a string like 'https://{service}.{region}.amazonaws.com' or an Endpoint object.

  • accessKeyId (String)

    your AWS access key ID.

  • secretAccessKey (String)

    your AWS secret access key.

  • sessionToken (AWS.Credentials)

    the optional AWS session token to sign requests with.

  • credentials (AWS.Credentials)

    the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.

  • credentialProvider (AWS.CredentialProviderChain)

    the provider chain used to resolve credentials if no static credentials property is set.

  • region (String)

    the region to send service requests to. See AWS.LookoutVision.region for more information.

  • maxRetries (Integer)

    the maximum amount of retries to attempt with a request. See AWS.LookoutVision.maxRetries for more information.

  • maxRedirects (Integer)

    the maximum amount of redirects to follow with a request. See AWS.LookoutVision.maxRedirects for more information.

  • sslEnabled (Boolean)

    whether to enable SSL for requests.

  • paramValidation (Boolean|map)

    whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:

    • min [Boolean] — Validates that a value meets the min constraint. This is enabled by default when paramValidation is set to true.
    • max [Boolean] — Validates that a value meets the max constraint.
    • pattern [Boolean] — Validates that a string value matches a regular expression.
    • enum [Boolean] — Validates that a string value matches one of the allowable enum values.
  • computeChecksums (Boolean)

    whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)

  • convertResponseTypes (Boolean)

    whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to true.

  • correctClockSkew (Boolean)

    whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to false.

  • s3ForcePathStyle (Boolean)

    whether to force path style URLs for S3 objects.

  • s3BucketEndpoint (Boolean)

    whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an endpoint to be provided explicitly to the service constructor.

  • s3DisableBodySigning (Boolean)

    whether S3 body signing should be disabled when using signature version v4. Body signing can only be disabled when using https. Defaults to true.

  • s3UsEast1RegionalEndpoint ('legacy'|'regional')

    when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to legacy

  • s3UseArnRegion (Boolean)

    whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to true

  • retryDelayOptions (map)

    A set of options to configure the retry delay on retryable errors. Currently supported options are:

    • base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
    • customBackoff [function] — A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds. If the result is a non-zero negative value, no further retry attempts will be made. The base option will be ignored if this option is supplied. The function is only called for retryable errors.
  • httpOptions (map)

    A set of options to pass to the low-level HTTP request. Currently supported options are:

    • proxy [String] — the URL to proxy requests through
    • agent [http.Agent, https.Agent] — the Agent object to perform HTTP requests with. Used for connection pooling. Defaults to the global agent (http.globalAgent) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment.
    • connectTimeout [Integer] — Sets the socket to timeout after failing to establish a connection with the server after connectTimeout milliseconds. This timeout has no effect once a socket connection has been established.
    • timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
    • xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
    • xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
  • apiVersion (String, Date)

    a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by apiVersions). Specify 'latest' to use the latest possible version.

  • apiVersions (map<String, String|Date>)

    a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.

  • logger (#write, #log)

    an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests

  • systemClockOffset (Number)

    an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global AWS.config object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds.

  • signatureVersion (String)

    the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.

  • signatureCache (Boolean)

    whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to true.

  • dynamoDbCrc32 (Boolean)

    whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default: true.

  • useAccelerateEndpoint (Boolean)

    Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default: false.

  • clientSideMonitoring (Boolean)

    whether to collect and publish this client's performance metrics of all its API requests.

  • endpointDiscoveryEnabled (Boolean|undefined)

    whether to call operations with endpoints given by service dynamically. Setting this

  • endpointCacheSize (Number)

    the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000

  • hostPrefixEnabled (Boolean)

    whether to marshal request parameters to the prefix of hostname. Defaults to true.

  • stsRegionalEndpoints ('legacy'|'regional')

    whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.

  • useFipsEndpoint (Boolean)

    Enables FIPS compatible endpoints. Defaults to false.

  • useDualstackEndpoint (Boolean)

    Enables IPv6 dualstack endpoint. Defaults to false.

Property Details

endpointAWS.Endpoint (readwrite)

Returns an Endpoint object representing the endpoint URL for service requests.

Returns:

  • (AWS.Endpoint)

    an Endpoint object representing the endpoint URL for service requests.

Method Details

createDataset(params = {}, callback) ⇒ AWS.Request

Creates a new dataset in an Amazon Lookout for Vision project. CreateDataset can create a training or a test dataset from a valid dataset source (DatasetSource).

If you want a single dataset project, specify train for the value of DatasetType.

To have a project with separate training and test datasets, call CreateDataset twice. On the first call, specify train for the value of DatasetType. On the second call, specify test for the value of DatasetType.

This operation requires permissions to perform the lookoutvision:CreateDataset operation.

Service Reference:

Examples:

Calling the createDataset operation

var params = {
  DatasetType: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE',
  DatasetSource: {
    GroundTruthManifest: {
      S3Object: {
        Bucket: 'STRING_VALUE', /* required */
        Key: 'STRING_VALUE', /* required */
        VersionId: 'STRING_VALUE'
      }
    }
  }
};
lookoutvision.createDataset(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project in which you want to create a dataset.

    • DatasetType — (String)

      The type of the dataset. Specify train for a training dataset. Specify test for a test dataset.

    • DatasetSource — (map)

      The location of the manifest file that Amazon Lookout for Vision uses to create the dataset.

      If you don't specify DatasetSource, an empty dataset is created and the operation synchronously returns. Later, you can add JSON Lines by calling UpdateDatasetEntries.

      If you specify a value for DataSource, the manifest at the S3 location is validated and used to create the dataset. The call to CreateDataset is asynchronous and might take a while to complete. To find out the current status, Check the value of Status returned in a call to DescribeDataset.

      • GroundTruthManifest — (map)

        Location information for the manifest file.

        • S3Object — (map)

          The S3 bucket location for the manifest file.

          • Bucketrequired — (String)

            The Amazon S3 bucket that contains the manifest.

          • Keyrequired — (String)

            The name and location of the manifest file withiin the bucket.

          • VersionId — (String)

            The version ID of the bucket.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to CreateDataset completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateDataset. In this case, safely retry your call to CreateDataset by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple dataset creation requests. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateDataset. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DatasetMetadata — (map)

        Information about the dataset.

        • DatasetType — (String)

          The type of the dataset.

        • CreationTimestamp — (Date)

          The Unix timestamp for the date and time that the dataset was created.

        • Status — (String)

          The status for the dataset.

          Possible values include:
          • "CREATE_IN_PROGRESS"
          • "CREATE_COMPLETE"
          • "CREATE_FAILED"
          • "UPDATE_IN_PROGRESS"
          • "UPDATE_COMPLETE"
          • "UPDATE_FAILED_ROLLBACK_IN_PROGRESS"
          • "UPDATE_FAILED_ROLLBACK_COMPLETE"
          • "DELETE_IN_PROGRESS"
          • "DELETE_COMPLETE"
          • "DELETE_FAILED"
        • StatusMessage — (String)

          The status message for the dataset.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createModel(params = {}, callback) ⇒ AWS.Request

Creates a new version of a model within an an Amazon Lookout for Vision project. CreateModel is an asynchronous operation in which Amazon Lookout for Vision trains, tests, and evaluates a new version of a model.

To get the current status, check the Status field returned in the response from DescribeModel.

If the project has a single dataset, Amazon Lookout for Vision internally splits the dataset to create a training and a test dataset. If the project has a training and a test dataset, Lookout for Vision uses the respective datasets to train and test the model.

After training completes, the evaluation metrics are stored at the location specified in OutputConfig.

This operation requires permissions to perform the lookoutvision:CreateModel operation. If you want to tag your model, you also require permission to the lookoutvision:TagResource operation.

Service Reference:

Examples:

Calling the createModel operation

var params = {
  OutputConfig: { /* required */
    S3Location: { /* required */
      Bucket: 'STRING_VALUE', /* required */
      Prefix: 'STRING_VALUE'
    }
  },
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE',
  Description: 'STRING_VALUE',
  KmsKeyId: 'STRING_VALUE',
  Tags: [
    {
      Key: 'STRING_VALUE', /* required */
      Value: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
lookoutvision.createModel(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project in which you want to create a model version.

    • Description — (String)

      A description for the version of the model.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to CreateModel completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateModel. In this case, safely retry your call to CreateModel by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from starting multiple training jobs. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateModel. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.
    • OutputConfig — (map)

      The location where Amazon Lookout for Vision saves the training results.

      • S3Locationrequired — (map)

        The S3 location for the output.

        • Bucketrequired — (String)

          The S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.

        • Prefix — (String)

          The path of the folder, within the S3 bucket, that contains the output.

    • KmsKeyId — (String)

      The identifier for your AWS KMS key. The key is used to encrypt training and test images copied into the service for model training. Your source images are unaffected. If this parameter is not specified, the copied images are encrypted by a key that AWS owns and manages.

    • Tags — (Array<map>)

      A set of tags (key-value pairs) that you want to attach to the model.

      • Keyrequired — (String)

        The key of the tag that is attached to the specified model.

      • Valuerequired — (String)

        The value of the tag that is attached to the specified model.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ModelMetadata — (map)

        The response from a call to CreateModel.

        • CreationTimestamp — (Date)

          The unix timestamp for the date and time that the model was created.

        • ModelVersion — (String)

          The version of the model.

        • ModelArn — (String)

          The Amazon Resource Name (ARN) of the model.

        • Description — (String)

          The description for the model.

        • Status — (String)

          The status of the model.

          Possible values include:
          • "TRAINING"
          • "TRAINED"
          • "TRAINING_FAILED"
          • "STARTING_HOSTING"
          • "HOSTED"
          • "HOSTING_FAILED"
          • "STOPPING_HOSTING"
          • "SYSTEM_UPDATING"
          • "DELETING"
        • StatusMessage — (String)

          The status message for the model.

        • Performance — (map)

          Performance metrics for the model. Not available until training has successfully completed.

          • F1Score — (Float)

            The overall F1 score metric for the trained model.

          • Recall — (Float)

            The overall recall metric value for the trained model.

          • Precision — (Float)

            The overall precision metric value for the trained model.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createProject(params = {}, callback) ⇒ AWS.Request

Creates an empty Amazon Lookout for Vision project. After you create the project, add a dataset by calling CreateDataset.

This operation requires permissions to perform the lookoutvision:CreateProject operation.

Service Reference:

Examples:

Calling the createProject operation

var params = {
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE'
};
lookoutvision.createProject(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name for the project.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to CreateProject completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateProject. In this case, safely retry your call to CreateProject by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project creation requests. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateProject. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ProjectMetadata — (map)

        Information about the project.

        • ProjectArn — (String)

          The Amazon Resource Name (ARN) of the project.

        • ProjectName — (String)

          The name of the project.

        • CreationTimestamp — (Date)

          The unix timestamp for the date and time that the project was created.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteDataset(params = {}, callback) ⇒ AWS.Request

Deletes an existing Amazon Lookout for Vision dataset.

If your the project has a single dataset, you must create a new dataset before you can create a model.

If you project has a training dataset and a test dataset consider the following.

  • If you delete the test dataset, your project reverts to a single dataset project. If you then train the model, Amazon Lookout for Vision internally splits the remaining dataset into a training and test dataset.

  • If you delete the training dataset, you must create a training dataset before you can create a model.

This operation requires permissions to perform the lookoutvision:DeleteDataset operation.

Service Reference:

Examples:

Calling the deleteDataset operation

var params = {
  DatasetType: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE'
};
lookoutvision.deleteDataset(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the dataset that you want to delete.

    • DatasetType — (String)

      The type of the dataset to delete. Specify train to delete the training dataset. Specify test to delete the test dataset. To delete the dataset in a single dataset project, specify train.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to DeleteDataset completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from DeleteDataset. In this case, safely retry your call to DeleteDataset by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple deletetion requests. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteDataset. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteModel(params = {}, callback) ⇒ AWS.Request

Deletes an Amazon Lookout for Vision model. You can't delete a running model. To stop a running model, use the StopModel operation.

It might take a few seconds to delete a model. To determine if a model has been deleted, call ListModels and check if the version of the model (ModelVersion) is in the Models array.

This operation requires permissions to perform the lookoutvision:DeleteModel operation.

Service Reference:

Examples:

Calling the deleteModel operation

var params = {
  ModelVersion: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE'
};
lookoutvision.deleteModel(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the model that you want to delete.

    • ModelVersion — (String)

      The version of the model that you want to delete.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to DeleteModel completes only once. You choose the value to pass. For example, an issue might prevent you from getting a response from DeleteModel. In this case, safely retry your call to DeleteModel by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple model deletion requests. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteModel. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ModelArn — (String)

        The Amazon Resource Name (ARN) of the model that was deleted.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteProject(params = {}, callback) ⇒ AWS.Request

Deletes an Amazon Lookout for Vision project.

To delete a project, you must first delete each version of the model associated with the project. To delete a model use the DeleteModel operation.

You also have to delete the dataset(s) associated with the model. For more information, see DeleteDataset. The images referenced by the training and test datasets aren't deleted.

This operation requires permissions to perform the lookoutvision:DeleteProject operation.

Service Reference:

Examples:

Calling the deleteProject operation

var params = {
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE'
};
lookoutvision.deleteProject(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project to delete.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to DeleteProject completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from DeleteProject. In this case, safely retry your call to DeleteProject by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project deletion requests. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteProject. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ProjectArn — (String)

        The Amazon Resource Name (ARN) of the project that was deleted.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeDataset(params = {}, callback) ⇒ AWS.Request

Describe an Amazon Lookout for Vision dataset.

This operation requires permissions to perform the lookoutvision:DescribeDataset operation.

Service Reference:

Examples:

Calling the describeDataset operation

var params = {
  DatasetType: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE' /* required */
};
lookoutvision.describeDataset(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the dataset that you want to describe.

    • DatasetType — (String)

      The type of the dataset to describe. Specify train to describe the training dataset. Specify test to describe the test dataset. If you have a single dataset project, specify train

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DatasetDescription — (map)

        The description of the requested dataset.

        • ProjectName — (String)

          The name of the project that contains the dataset.

        • DatasetType — (String)

          The type of the dataset. The value train represents a training dataset or single dataset project. The value test represents a test dataset.

        • CreationTimestamp — (Date)

          The Unix timestamp for the time and date that the dataset was created.

        • LastUpdatedTimestamp — (Date)

          The Unix timestamp for the date and time that the dataset was last updated.

        • Status — (String)

          The status of the dataset.

          Possible values include:
          • "CREATE_IN_PROGRESS"
          • "CREATE_COMPLETE"
          • "CREATE_FAILED"
          • "UPDATE_IN_PROGRESS"
          • "UPDATE_COMPLETE"
          • "UPDATE_FAILED_ROLLBACK_IN_PROGRESS"
          • "UPDATE_FAILED_ROLLBACK_COMPLETE"
          • "DELETE_IN_PROGRESS"
          • "DELETE_COMPLETE"
          • "DELETE_FAILED"
        • StatusMessage — (String)

          The status message for the dataset.

        • ImageStats — (map)

          Statistics about the images in a dataset.

          • Total — (Integer)

            The total number of images in the dataset.

          • Labeled — (Integer)

            The total number of labeled images.

          • Normal — (Integer)

            The total number of images labeled as normal.

          • Anomaly — (Integer)

            the total number of images labeled as an anomaly.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeModel(params = {}, callback) ⇒ AWS.Request

Describes a version of an Amazon Lookout for Vision model.

This operation requires permissions to perform the lookoutvision:DescribeModel operation.

Service Reference:

Examples:

Calling the describeModel operation

var params = {
  ModelVersion: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE' /* required */
};
lookoutvision.describeModel(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The project that contains the version of a model that you want to describe.

    • ModelVersion — (String)

      The version of the model that you want to describe.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ModelDescription — (map)

        Contains the description of the model.

        • ModelVersion — (String)

          The version of the model

        • ModelArn — (String)

          The Amazon Resource Name (ARN) of the model.

        • CreationTimestamp — (Date)

          The unix timestamp for the date and time that the model was created.

        • Description — (String)

          The description for the model.

        • Status — (String)

          The status of the model.

          Possible values include:
          • "TRAINING"
          • "TRAINED"
          • "TRAINING_FAILED"
          • "STARTING_HOSTING"
          • "HOSTED"
          • "HOSTING_FAILED"
          • "STOPPING_HOSTING"
          • "SYSTEM_UPDATING"
          • "DELETING"
        • StatusMessage — (String)

          The status message for the model.

        • Performance — (map)

          Performance metrics for the model. Created during training.

          • F1Score — (Float)

            The overall F1 score metric for the trained model.

          • Recall — (Float)

            The overall recall metric value for the trained model.

          • Precision — (Float)

            The overall precision metric value for the trained model.

        • OutputConfig — (map)

          The S3 location where Amazon Lookout for Vision saves model training files.

          • S3Locationrequired — (map)

            The S3 location for the output.

            • Bucketrequired — (String)

              The S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.

            • Prefix — (String)

              The path of the folder, within the S3 bucket, that contains the output.

        • EvaluationManifest — (map)

          The S3 location where Amazon Lookout for Vision saves the manifest file that was used to test the trained model and generate the performance scores.

          • Bucketrequired — (String)

            The bucket that contains the training output.

          • Keyrequired — (String)

            The location of the training output in the bucket.

        • EvaluationResult — (map)

          The S3 location where Amazon Lookout for Vision saves the performance metrics.

          • Bucketrequired — (String)

            The bucket that contains the training output.

          • Keyrequired — (String)

            The location of the training output in the bucket.

        • EvaluationEndTimestamp — (Date)

          The unix timestamp for the date and time that the evaluation ended.

        • KmsKeyId — (String)

          The identifer for the AWS Key Management Service (AWS KMS) key that was used to encrypt the model during training.

        • MinInferenceUnits — (Integer)

          The minimum number of inference units used by the model. For more information, see StartModel

        • MaxInferenceUnits — (Integer)

          The maximum number of inference units Amazon Lookout for Vision uses to auto-scale the model. For more information, see StartModel.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeModelPackagingJob(params = {}, callback) ⇒ AWS.Request

Describes an Amazon Lookout for Vision model packaging job.

This operation requires permissions to perform the lookoutvision:DescribeModelPackagingJob operation.

For more information, see Using your Amazon Lookout for Vision model on an edge device in the Amazon Lookout for Vision Developer Guide.

Service Reference:

Examples:

Calling the describeModelPackagingJob operation

var params = {
  JobName: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE' /* required */
};
lookoutvision.describeModelPackagingJob(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the model packaging job that you want to describe.

    • JobName — (String)

      The job name for the model packaging job.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ModelPackagingDescription — (map)

        The description of the model packaging job.

        • JobName — (String)

          The name of the model packaging job.

        • ProjectName — (String)

          The name of the project that's associated with a model that's in the model package.

        • ModelVersion — (String)

          The version of the model used in the model packaging job.

        • ModelPackagingConfiguration — (map)

          The configuration information used in the model packaging job.

          • Greengrassrequired — (map)

            Configuration information for the AWS IoT Greengrass component in a model packaging job.

            • CompilerOptions — (String)

              Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) and CPU accelerators are supported. If you specify TargetDevice, don't specify CompilerOptions.

              For more information, see Compiler options in the Amazon Lookout for Vision Developer Guide.

            • TargetDevice — (String)

              The target device for the model. Currently the only supported value is jetson_xavier. If you specify TargetDevice, you can't specify TargetPlatform.

              Possible values include:
              • "jetson_xavier"
            • TargetPlatform — (map)

              The target platform for the model. If you specify TargetPlatform, you can't specify TargetDevice.

              • Osrequired — (String)

                The target operating system for the model. Linux is the only operating system that is currently supported.

                Possible values include:
                • "LINUX"
              • Archrequired — (String)

                The target architecture for the model. The currently supported architectures are X86_64 (64-bit version of the x86 instruction set) and ARM_64 (ARMv8 64-bit CPU).

                Possible values include:
                • "ARM64"
                • "X86_64"
              • Accelerator — (String)

                The target accelerator for the model. Currently, Amazon Lookout for Vision only supports NVIDIA (Nvidia graphics processing unit) and CPU accelerators. If you specify NVIDIA as an accelerator, you must also specify the gpu-code, trt-ver, and cuda-ver compiler options. If you don't specify an accelerator, Lookout for Vision uses the CPU for compilation and we highly recommend that you use the GreengrassConfiguration$CompilerOptions field. For example, you can use the following compiler options for CPU:

                • mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'}

                • mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']}

                Possible values include:
                • "NVIDIA"
            • S3OutputLocationrequired — (map)

              An S3 location in which Lookout for Vision stores the component artifacts.

              • Bucketrequired — (String)

                The S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.

              • Prefix — (String)

                The path of the folder, within the S3 bucket, that contains the output.

            • ComponentNamerequired — (String)

              A name for the AWS IoT Greengrass component.

            • ComponentVersion — (String)

              A Version for the AWS IoT Greengrass component. If you don't provide a value, a default value of Model Version.0.0 is used.

            • ComponentDescription — (String)

              A description for the AWS IoT Greengrass component.

            • Tags — (Array<map>)

              A set of tags (key-value pairs) that you want to attach to the AWS IoT Greengrass component.

              • Keyrequired — (String)

                The key of the tag that is attached to the specified model.

              • Valuerequired — (String)

                The value of the tag that is attached to the specified model.

        • ModelPackagingJobDescription — (String)

          The description for the model packaging job.

        • ModelPackagingMethod — (String)

          The AWS service used to package the job. Currently Lookout for Vision can package jobs with AWS IoT Greengrass.

        • ModelPackagingOutputDetails — (map)

          Information about the output of the model packaging job. For more information, see DescribeModelPackagingJob.

          • Greengrass — (map)

            Information about the AWS IoT Greengrass component in a model packaging job.

            • ComponentVersionArn — (String)

              The Amazon Resource Name (ARN) of the component.

            • ComponentName — (String)

              The name of the component.

            • ComponentVersion — (String)

              The version of the component.

        • Status — (String)

          The status of the model packaging job.

          Possible values include:
          • "CREATED"
          • "RUNNING"
          • "SUCCEEDED"
          • "FAILED"
        • StatusMessage — (String)

          The status message for the model packaging job.

        • CreationTimestamp — (Date)

          The Unix timestamp for the time and date that the model packaging job was created.

        • LastUpdatedTimestamp — (Date)

          The Unix timestamp for the time and date that the model packaging job was last updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeProject(params = {}, callback) ⇒ AWS.Request

Describes an Amazon Lookout for Vision project.

This operation requires permissions to perform the lookoutvision:DescribeProject operation.

Service Reference:

Examples:

Calling the describeProject operation

var params = {
  ProjectName: 'STRING_VALUE' /* required */
};
lookoutvision.describeProject(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that you want to describe.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ProjectDescription — (map)

        The description of the project.

        • ProjectArn — (String)

          The Amazon Resource Name (ARN) of the project.

        • ProjectName — (String)

          The name of the project.

        • CreationTimestamp — (Date)

          The unix timestamp for the date and time that the project was created.

        • Datasets — (Array<map>)

          A list of datasets in the project.

          • DatasetType — (String)

            The type of the dataset.

          • CreationTimestamp — (Date)

            The Unix timestamp for the date and time that the dataset was created.

          • Status — (String)

            The status for the dataset.

            Possible values include:
            • "CREATE_IN_PROGRESS"
            • "CREATE_COMPLETE"
            • "CREATE_FAILED"
            • "UPDATE_IN_PROGRESS"
            • "UPDATE_COMPLETE"
            • "UPDATE_FAILED_ROLLBACK_IN_PROGRESS"
            • "UPDATE_FAILED_ROLLBACK_COMPLETE"
            • "DELETE_IN_PROGRESS"
            • "DELETE_COMPLETE"
            • "DELETE_FAILED"
          • StatusMessage — (String)

            The status message for the dataset.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

detectAnomalies(params = {}, callback) ⇒ AWS.Request

Detects anomalies in an image that you supply.

The response from DetectAnomalies includes a boolean prediction that the image contains one or more anomalies and a confidence value for the prediction. If the model is an image segmentation model, the response also includes segmentation information for each type of anomaly found in the image.

Note: Before calling DetectAnomalies, you must first start your model with the StartModel operation. You are charged for the amount of time, in minutes, that a model runs and for the number of anomaly detection units that your model uses. If you are not using a model, use the StopModel operation to stop your model.

For more information, see Detecting anomalies in an image in the Amazon Lookout for Vision developer guide.

This operation requires permissions to perform the lookoutvision:DetectAnomalies operation.

Service Reference:

Examples:

Calling the detectAnomalies operation

var params = {
  Body: Buffer.from('...') || 'STRING_VALUE' || streamObject, /* required */
  ContentType: 'STRING_VALUE', /* required */
  ModelVersion: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE' /* required */
};
lookoutvision.detectAnomalies(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the model version that you want to use.

    • ModelVersion — (String)

      The version of the model that you want to use.

    • Body — (Buffer, Typed Array, Blob, String, ReadableStream)

      The unencrypted image bytes that you want to analyze.

    • ContentType — (String)

      The type of the image passed in Body. Valid values are image/png (PNG format images) and image/jpeg (JPG format images).

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DetectAnomalyResult — (map)

        The results of the DetectAnomalies operation.

        • Source — (map)

          The source of the image that was analyzed. direct means that the images was supplied from the local computer. No other values are supported.

          • Type — (String)

            The type of the image.

        • IsAnomalous — (Boolean)

          True if Amazon Lookout for Vision classifies the image as containing an anomaly, otherwise false.

        • Confidence — (Float)

          The confidence that Lookout for Vision has in the accuracy of the classification in IsAnomalous.

        • Anomalies — (Array<map>)

          If the model is an image segmentation model, Anomalies contains a list of anomaly types found in the image. There is one entry for each type of anomaly found (even if multiple instances of an anomaly type exist on the image). The first element in the list is always an anomaly type representing the image background ('background') and shouldn't be considered an anomaly. Amazon Lookout for Vision automatically add the background anomaly type to the response, and you don't need to declare a background anomaly type in your dataset.

          If the list has one entry ('background'), no anomalies were found on the image.

          An image classification model doesn't return an Anomalies list.

          • Name — (String)

            The name of an anomaly type found in an image. Name maps to an anomaly type in the training dataset, apart from the anomaly type background. The service automatically inserts the background anomaly type into the response from DetectAnomalies.

          • PixelAnomaly — (map)

            Information about the pixel mask that covers an anomaly type.

            • TotalPercentageArea — (Float)

              The percentage area of the image that the anomaly type covers.

            • Color — (String)

              A hex color value for the mask that covers an anomaly type. Each anomaly type has a different mask color. The color maps to the color of the anomaly type used in the training dataset.

        • AnomalyMask — (Buffer, Typed Array, Blob, String)

          If the model is an image segmentation model, AnomalyMask contains pixel masks that covers all anomaly types found on the image. Each anomaly type has a different mask color. To map a color to an anomaly type, see the color field of the PixelAnomaly object.

          An image classification model doesn't return an Anomalies list.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listDatasetEntries(params = {}, callback) ⇒ AWS.Request

Lists the JSON Lines within a dataset. An Amazon Lookout for Vision JSON Line contains the anomaly information for a single image, including the image location and the assigned label.

This operation requires permissions to perform the lookoutvision:ListDatasetEntries operation.

Service Reference:

Examples:

Calling the listDatasetEntries operation

var params = {
  DatasetType: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE', /* required */
  AfterCreationDate: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
  AnomalyClass: 'STRING_VALUE',
  BeforeCreationDate: new Date || 'Wed Dec 31 1969 16:00:00 GMT-0800 (PST)' || 123456789,
  Labeled: true || false,
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  SourceRefContains: 'STRING_VALUE'
};
lookoutvision.listDatasetEntries(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the dataset that you want to list.

    • DatasetType — (String)

      The type of the dataset that you want to list. Specify train to list the training dataset. Specify test to list the test dataset. If you have a single dataset project, specify train.

    • Labeled — (Boolean)

      Specify true to include labeled entries, otherwise specify false. If you don't specify a value, Lookout for Vision returns all entries.

    • AnomalyClass — (String)

      Specify normal to include only normal images. Specify anomaly to only include anomalous entries. If you don't specify a value, Amazon Lookout for Vision returns normal and anomalous images.

    • BeforeCreationDate — (Date)

      Only includes entries before the specified date in the response. For example, 2020-06-23T00:00:00.

    • AfterCreationDate — (Date)

      Only includes entries after the specified date in the response. For example, 2020-06-23T00:00:00.

    • NextToken — (String)

      If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of dataset entries.

    • MaxResults — (Integer)

      The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

    • SourceRefContains — (String)

      Perform a "contains" search on the values of the source-ref key within the dataset. For example a value of "IMG_17" returns all JSON Lines where the source-ref key value matches IMG_17.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • DatasetEntries — (Array<String>)

        A list of the entries (JSON Lines) within the dataset.

      • NextToken — (String)

        If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set ofdataset entries.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listModelPackagingJobs(params = {}, callback) ⇒ AWS.Request

Lists the model packaging jobs created for an Amazon Lookout for Vision project.

This operation requires permissions to perform the lookoutvision:ListModelPackagingJobs operation.

For more information, see Using your Amazon Lookout for Vision model on an edge device in the Amazon Lookout for Vision Developer Guide.

Service Reference:

Examples:

Calling the listModelPackagingJobs operation

var params = {
  ProjectName: 'STRING_VALUE', /* required */
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
lookoutvision.listModelPackagingJobs(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project for which you want to list the model packaging jobs.

    • NextToken — (String)

      If the previous response was incomplete (because there is more results to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.

    • MaxResults — (Integer)

      The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • ModelPackagingJobs — (Array<map>)

        A list of the model packaging jobs created for the specified Amazon Lookout for Vision project.

        • JobName — (String)

          The name of the model packaging job.

        • ProjectName — (String)

          The project that contains the model that is in the model package.

        • ModelVersion — (String)

          The version of the model that is in the model package.

        • ModelPackagingJobDescription — (String)

          The description for the model packaging job.

        • ModelPackagingMethod — (String)

          The AWS service used to package the job. Currently Lookout for Vision can package jobs with AWS IoT Greengrass.

        • Status — (String)

          The status of the model packaging job.

          Possible values include:
          • "CREATED"
          • "RUNNING"
          • "SUCCEEDED"
          • "FAILED"
        • StatusMessage — (String)

          The status message for the model packaging job.

        • CreationTimestamp — (Date)

          The Unix timestamp for the time and date that the model packaging job was created.

        • LastUpdatedTimestamp — (Date)

          The Unix timestamp for the time and date that the model packaging job was last updated.

      • NextToken — (String)

        If the previous response was incomplete (because there is more results to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listModels(params = {}, callback) ⇒ AWS.Request

Lists the versions of a model in an Amazon Lookout for Vision project.

The ListModels operation is eventually consistent. Recent calls to CreateModel might take a while to appear in the response from ListProjects.

This operation requires permissions to perform the lookoutvision:ListModels operation.

Service Reference:

Examples:

Calling the listModels operation

var params = {
  ProjectName: 'STRING_VALUE', /* required */
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
lookoutvision.listModels(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the model versions that you want to list.

    • NextToken — (String)

      If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of models.

    • MaxResults — (Integer)

      The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Models — (Array<map>)

        A list of model versions in the specified project.

        • CreationTimestamp — (Date)

          The unix timestamp for the date and time that the model was created.

        • ModelVersion — (String)

          The version of the model.

        • ModelArn — (String)

          The Amazon Resource Name (ARN) of the model.

        • Description — (String)

          The description for the model.

        • Status — (String)

          The status of the model.

          Possible values include:
          • "TRAINING"
          • "TRAINED"
          • "TRAINING_FAILED"
          • "STARTING_HOSTING"
          • "HOSTED"
          • "HOSTING_FAILED"
          • "STOPPING_HOSTING"
          • "SYSTEM_UPDATING"
          • "DELETING"
        • StatusMessage — (String)

          The status message for the model.

        • Performance — (map)

          Performance metrics for the model. Not available until training has successfully completed.

          • F1Score — (Float)

            The overall F1 score metric for the trained model.

          • Recall — (Float)

            The overall recall metric value for the trained model.

          • Precision — (Float)

            The overall precision metric value for the trained model.

      • NextToken — (String)

        If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set of models.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listProjects(params = {}, callback) ⇒ AWS.Request

Lists the Amazon Lookout for Vision projects in your AWS account that are in the AWS Region in which you call ListProjects.

The ListProjects operation is eventually consistent. Recent calls to CreateProject and DeleteProject might take a while to appear in the response from ListProjects.

This operation requires permissions to perform the lookoutvision:ListProjects operation.

Service Reference:

Examples:

Calling the listProjects operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
lookoutvision.listProjects(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of projects.

    • MaxResults — (Integer)

      The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Projects — (Array<map>)

        A list of projects in your AWS account.

        • ProjectArn — (String)

          The Amazon Resource Name (ARN) of the project.

        • ProjectName — (String)

          The name of the project.

        • CreationTimestamp — (Date)

          The unix timestamp for the date and time that the project was created.

      • NextToken — (String)

        If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set of projects.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listTagsForResource(params = {}, callback) ⇒ AWS.Request

Returns a list of tags attached to the specified Amazon Lookout for Vision model.

This operation requires permissions to perform the lookoutvision:ListTagsForResource operation.

Service Reference:

Examples:

Calling the listTagsForResource operation

var params = {
  ResourceArn: 'STRING_VALUE' /* required */
};
lookoutvision.listTagsForResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the model for which you want to list tags.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Tags — (Array<map>)

        A map of tag keys and values attached to the specified model.

        • Keyrequired — (String)

          The key of the tag that is attached to the specified model.

        • Valuerequired — (String)

          The value of the tag that is attached to the specified model.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startModel(params = {}, callback) ⇒ AWS.Request

Starts the running of the version of an Amazon Lookout for Vision model. Starting a model takes a while to complete. To check the current state of the model, use DescribeModel.

A model is ready to use when its status is HOSTED.

Once the model is running, you can detect custom labels in new images by calling DetectAnomalies.

Note: You are charged for the amount of time that the model is running. To stop a running model, call StopModel.

This operation requires permissions to perform the lookoutvision:StartModel operation.

Service Reference:

Examples:

Calling the startModel operation

var params = {
  MinInferenceUnits: 'NUMBER_VALUE', /* required */
  ModelVersion: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE',
  MaxInferenceUnits: 'NUMBER_VALUE'
};
lookoutvision.startModel(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the model that you want to start.

    • ModelVersion — (String)

      The version of the model that you want to start.

    • MinInferenceUnits — (Integer)

      The minimum number of inference units to use. A single inference unit represents 1 hour of processing. Use a higher number to increase the TPS throughput of your model. You are charged for the number of inference units that you use.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to StartModel completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from StartModel. In this case, safely retry your call to StartModel by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple start requests. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StartModel. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.
    • MaxInferenceUnits — (Integer)

      The maximum number of inference units to use for auto-scaling the model. If you don't specify a value, Amazon Lookout for Vision doesn't auto-scale the model.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Status — (String)

        The current running status of the model.

        Possible values include:
        • "STARTING_HOSTING"
        • "HOSTED"
        • "HOSTING_FAILED"
        • "STOPPING_HOSTING"
        • "SYSTEM_UPDATING"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

startModelPackagingJob(params = {}, callback) ⇒ AWS.Request

Starts an Amazon Lookout for Vision model packaging job. A model packaging job creates an AWS IoT Greengrass component for a Lookout for Vision model. You can use the component to deploy your model to an edge device managed by Greengrass.

Use the DescribeModelPackagingJob API to determine the current status of the job. The model packaging job is complete if the value of Status is SUCCEEDED.

To deploy the component to the target device, use the component name and component version with the AWS IoT Greengrass CreateDeployment API.

This operation requires the following permissions:

  • lookoutvision:StartModelPackagingJob

  • s3:PutObject

  • s3:GetBucketLocation

  • kms:GenerateDataKey

  • greengrass:CreateComponentVersion

  • greengrass:DescribeComponent

  • (Optional) greengrass:TagResource. Only required if you want to tag the component.

For more information, see Using your Amazon Lookout for Vision model on an edge device in the Amazon Lookout for Vision Developer Guide.

Service Reference:

Examples:

Calling the startModelPackagingJob operation

var params = {
  Configuration: { /* required */
    Greengrass: { /* required */
      ComponentName: 'STRING_VALUE', /* required */
      S3OutputLocation: { /* required */
        Bucket: 'STRING_VALUE', /* required */
        Prefix: 'STRING_VALUE'
      },
      CompilerOptions: 'STRING_VALUE',
      ComponentDescription: 'STRING_VALUE',
      ComponentVersion: 'STRING_VALUE',
      Tags: [
        {
          Key: 'STRING_VALUE', /* required */
          Value: 'STRING_VALUE' /* required */
        },
        /* more items */
      ],
      TargetDevice: jetson_xavier,
      TargetPlatform: {
        Arch: ARM64 | X86_64, /* required */
        Os: LINUX, /* required */
        Accelerator: NVIDIA
      }
    }
  },
  ModelVersion: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE',
  Description: 'STRING_VALUE',
  JobName: 'STRING_VALUE'
};
lookoutvision.startModelPackagingJob(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project which contains the version of the model that you want to package.

    • ModelVersion — (String)

      The version of the model within the project that you want to package.

    • JobName — (String)

      A name for the model packaging job. If you don't supply a value, the service creates a job name for you.

    • Configuration — (map)

      The configuration for the model packaging job.

      • Greengrassrequired — (map)

        Configuration information for the AWS IoT Greengrass component in a model packaging job.

        • CompilerOptions — (String)

          Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) and CPU accelerators are supported. If you specify TargetDevice, don't specify CompilerOptions.

          For more information, see Compiler options in the Amazon Lookout for Vision Developer Guide.

        • TargetDevice — (String)

          The target device for the model. Currently the only supported value is jetson_xavier. If you specify TargetDevice, you can't specify TargetPlatform.

          Possible values include:
          • "jetson_xavier"
        • TargetPlatform — (map)

          The target platform for the model. If you specify TargetPlatform, you can't specify TargetDevice.

          • Osrequired — (String)

            The target operating system for the model. Linux is the only operating system that is currently supported.

            Possible values include:
            • "LINUX"
          • Archrequired — (String)

            The target architecture for the model. The currently supported architectures are X86_64 (64-bit version of the x86 instruction set) and ARM_64 (ARMv8 64-bit CPU).

            Possible values include:
            • "ARM64"
            • "X86_64"
          • Accelerator — (String)

            The target accelerator for the model. Currently, Amazon Lookout for Vision only supports NVIDIA (Nvidia graphics processing unit) and CPU accelerators. If you specify NVIDIA as an accelerator, you must also specify the gpu-code, trt-ver, and cuda-ver compiler options. If you don't specify an accelerator, Lookout for Vision uses the CPU for compilation and we highly recommend that you use the GreengrassConfiguration$CompilerOptions field. For example, you can use the following compiler options for CPU:

            • mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'}

            • mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']}

            Possible values include:
            • "NVIDIA"
        • S3OutputLocationrequired — (map)

          An S3 location in which Lookout for Vision stores the component artifacts.

          • Bucketrequired — (String)

            The S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.

          • Prefix — (String)

            The path of the folder, within the S3 bucket, that contains the output.

        • ComponentNamerequired — (String)

          A name for the AWS IoT Greengrass component.

        • ComponentVersion — (String)

          A Version for the AWS IoT Greengrass component. If you don't provide a value, a default value of Model Version.0.0 is used.

        • ComponentDescription — (String)

          A description for the AWS IoT Greengrass component.

        • Tags — (Array<map>)

          A set of tags (key-value pairs) that you want to attach to the AWS IoT Greengrass component.

          • Keyrequired — (String)

            The key of the tag that is attached to the specified model.

          • Valuerequired — (String)

            The value of the tag that is attached to the specified model.

    • Description — (String)

      A description for the model packaging job.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to StartModelPackagingJob completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from StartModelPackagingJob. In this case, safely retry your call to StartModelPackagingJob by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple dataset creation requests. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StartModelPackagingJob. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • JobName — (String)

        The job name for the model packaging job. If you don't supply a job name in the JobName input parameter, the service creates a job name for you.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

stopModel(params = {}, callback) ⇒ AWS.Request

Stops the hosting of a running model. The operation might take a while to complete. To check the current status, call DescribeModel.

After the model hosting stops, the Status of the model is TRAINED.

This operation requires permissions to perform the lookoutvision:StopModel operation.

Service Reference:

Examples:

Calling the stopModel operation

var params = {
  ModelVersion: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE'
};
lookoutvision.stopModel(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the model that you want to stop.

    • ModelVersion — (String)

      The version of the model that you want to stop.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to StopModel completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from StopModel. In this case, safely retry your call to StopModel by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple stop requests. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StopModel. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Status — (String)

        The status of the model.

        Possible values include:
        • "STARTING_HOSTING"
        • "HOSTED"
        • "HOSTING_FAILED"
        • "STOPPING_HOSTING"
        • "SYSTEM_UPDATING"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

tagResource(params = {}, callback) ⇒ AWS.Request

Adds one or more key-value tags to an Amazon Lookout for Vision model. For more information, see Tagging a model in the Amazon Lookout for Vision Developer Guide.

This operation requires permissions to perform the lookoutvision:TagResource operation.

Service Reference:

Examples:

Calling the tagResource operation

var params = {
  ResourceArn: 'STRING_VALUE', /* required */
  Tags: [ /* required */
    {
      Key: 'STRING_VALUE', /* required */
      Value: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
lookoutvision.tagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the model to assign the tags.

    • Tags — (Array<map>)

      The key-value tags to assign to the model.

      • Keyrequired — (String)

        The key of the tag that is attached to the specified model.

      • Valuerequired — (String)

        The value of the tag that is attached to the specified model.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

untagResource(params = {}, callback) ⇒ AWS.Request

Removes one or more tags from an Amazon Lookout for Vision model. For more information, see Tagging a model in the Amazon Lookout for Vision Developer Guide.

This operation requires permissions to perform the lookoutvision:UntagResource operation.

Service Reference:

Examples:

Calling the untagResource operation

var params = {
  ResourceArn: 'STRING_VALUE', /* required */
  TagKeys: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
lookoutvision.untagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the model from which you want to remove tags.

    • TagKeys — (Array<String>)

      A list of the keys of the tags that you want to remove.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateDatasetEntries(params = {}, callback) ⇒ AWS.Request

Adds or updates one or more JSON Line entries in a dataset. A JSON Line includes information about an image used for training or testing an Amazon Lookout for Vision model.

To update an existing JSON Line, use the source-ref field to identify the JSON Line. The JSON line that you supply replaces the existing JSON line. Any existing annotations that are not in the new JSON line are removed from the dataset.

For more information, see Defining JSON lines for anomaly classification in the Amazon Lookout for Vision Developer Guide.

Note: The images you reference in the source-ref field of a JSON line, must be in the same S3 bucket as the existing images in the dataset.

Updating a dataset might take a while to complete. To check the current status, call DescribeDataset and check the Status field in the response.

This operation requires permissions to perform the lookoutvision:UpdateDatasetEntries operation.

Service Reference:

Examples:

Calling the updateDatasetEntries operation

var params = {
  Changes: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */, /* required */
  DatasetType: 'STRING_VALUE', /* required */
  ProjectName: 'STRING_VALUE', /* required */
  ClientToken: 'STRING_VALUE'
};
lookoutvision.updateDatasetEntries(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProjectName — (String)

      The name of the project that contains the dataset that you want to update.

    • DatasetType — (String)

      The type of the dataset that you want to update. Specify train to update the training dataset. Specify test to update the test dataset. If you have a single dataset project, specify train.

    • Changes — (Buffer, Typed Array, Blob, String)

      The entries to add to the dataset.

    • ClientToken — (String)

      ClientToken is an idempotency token that ensures a call to UpdateDatasetEntries completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from UpdateDatasetEntries. In this case, safely retry your call to UpdateDatasetEntries by using the same ClientToken parameter value.

      If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple updates with the same dataset entries. You'll need to provide your own value for other use cases.

      An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to UpdateDatasetEntries. An idempotency token is active for 8 hours.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Status — (String)

        The status of the dataset update.

        Possible values include:
        • "CREATE_IN_PROGRESS"
        • "CREATE_COMPLETE"
        • "CREATE_FAILED"
        • "UPDATE_IN_PROGRESS"
        • "UPDATE_COMPLETE"
        • "UPDATE_FAILED_ROLLBACK_IN_PROGRESS"
        • "UPDATE_FAILED_ROLLBACK_COMPLETE"
        • "DELETE_IN_PROGRESS"
        • "DELETE_COMPLETE"
        • "DELETE_FAILED"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.