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.Personalize

Inherits:
AWS.Service show all
Identifier:
personalize
API Version:
2018-05-22
Defined in:
(unknown)

Overview

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

Service Description

Amazon Personalize is a machine learning service that makes it easy to add individualized recommendations to customers.

Sending a Request Using Personalize

var personalize = new AWS.Personalize();
personalize.createBatchInferenceJob(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 Personalize object uses this specific API, you can construct the object by passing the apiVersion option to the constructor:

var personalize = new AWS.Personalize({apiVersion: '2018-05-22'});

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

AWS.config.apiVersions = {
  personalize: '2018-05-22',
  // other service API versions
};

var personalize = new AWS.Personalize();

Version:

  • 2018-05-22

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.Personalize(options = {}) ⇒ Object

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

Examples:

Constructing a Personalize object

var personalize = new AWS.Personalize({apiVersion: '2018-05-22'});

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.Personalize.region for more information.

  • maxRetries (Integer)

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

  • maxRedirects (Integer)

    the maximum amount of redirects to follow with a request. See AWS.Personalize.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

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

Generates batch recommendations based on a list of items or users stored in Amazon S3 and exports the recommendations to an Amazon S3 bucket.

To generate batch recommendations, specify the ARN of a solution version and an Amazon S3 URI for the input and output data. For user personalization, popular items, and personalized ranking solutions, the batch inference job generates a list of recommended items for each user ID in the input file. For related items solutions, the job generates a list of recommended items for each item ID in the input file.

For more information, see Creating a batch inference job .

If you use the Similar-Items recipe, Amazon Personalize can add descriptive themes to batch recommendations. To generate themes, set the job's mode to THEME_GENERATION and specify the name of the field that contains item names in the input data.

For more information about generating themes, see Batch recommendations with themes from Content Generator .

You can't get batch recommendations with the Trending-Now or Next-Best-Action recipes.

Service Reference:

Examples:

Calling the createBatchInferenceJob operation

var params = {
  jobInput: { /* required */
    s3DataSource: { /* required */
      path: 'STRING_VALUE', /* required */
      kmsKeyArn: 'STRING_VALUE'
    }
  },
  jobName: 'STRING_VALUE', /* required */
  jobOutput: { /* required */
    s3DataDestination: { /* required */
      path: 'STRING_VALUE', /* required */
      kmsKeyArn: 'STRING_VALUE'
    }
  },
  roleArn: 'STRING_VALUE', /* required */
  solutionVersionArn: 'STRING_VALUE', /* required */
  batchInferenceJobConfig: {
    itemExplorationConfig: {
      '<ParameterName>': 'STRING_VALUE',
      /* '<ParameterName>': ... */
    }
  },
  batchInferenceJobMode: BATCH_INFERENCE | THEME_GENERATION,
  filterArn: 'STRING_VALUE',
  numResults: 'NUMBER_VALUE',
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ],
  themeGenerationConfig: {
    fieldsForThemeGeneration: { /* required */
      itemName: 'STRING_VALUE' /* required */
    }
  }
};
personalize.createBatchInferenceJob(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: {})
    • jobName — (String)

      The name of the batch inference job to create.

    • solutionVersionArn — (String)

      The Amazon Resource Name (ARN) of the solution version that will be used to generate the batch inference recommendations.

    • filterArn — (String)

      The ARN of the filter to apply to the batch inference job. For more information on using filters, see Filtering batch recommendations.

    • numResults — (Integer)

      The number of recommendations to retrieve.

    • jobInput — (map)

      The Amazon S3 path that leads to the input file to base your recommendations on. The input material must be in JSON format.

      • s3DataSourcerequired — (map)

        The URI of the Amazon S3 location that contains your input data. The Amazon S3 bucket must be in the same region as the API endpoint you are calling.

        • pathrequired — (String)

          The file path of the Amazon S3 bucket.

        • kmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

    • jobOutput — (map)

      The path to the Amazon S3 bucket where the job's output will be stored.

      • s3DataDestinationrequired — (map)

        Information on the Amazon S3 bucket in which the batch inference job's output is stored.

        • pathrequired — (String)

          The file path of the Amazon S3 bucket.

        • kmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

    • roleArn — (String)

      The ARN of the Amazon Identity and Access Management role that has permissions to read and write to your input and output Amazon S3 buckets respectively.

    • batchInferenceJobConfig — (map)

      The configuration details of a batch inference job.

      • itemExplorationConfig — (map<String>)

        A string to string map specifying the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. See User-Personalization.

    • tags — (Array<map>)

      A list of tags to apply to the batch inference job.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

    • batchInferenceJobMode — (String)

      The mode of the batch inference job. To generate descriptive themes for groups of similar items, set the job mode to THEME_GENERATION. If you don't want to generate themes, use the default BATCH_INFERENCE.

      When you get batch recommendations with themes, you will incur additional costs. For more information, see Amazon Personalize pricing.

      Possible values include:
      • "BATCH_INFERENCE"
      • "THEME_GENERATION"
    • themeGenerationConfig — (map)

      For theme generation jobs, specify the name of the column in your Items dataset that contains each item's name.

      • fieldsForThemeGenerationrequired — (map)

        Fields used to generate descriptive themes for a batch inference job.

        • itemNamerequired — (String)

          The name of the Items dataset column that stores the name of each item in the dataset.

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:

      • batchInferenceJobArn — (String)

        The ARN of the batch inference job.

Returns:

  • (AWS.Request)

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

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

Creates a batch segment job. The operation can handle up to 50 million records and the input file must be in JSON format. For more information, see Getting batch recommendations and user segments.

Service Reference:

Examples:

Calling the createBatchSegmentJob operation

var params = {
  jobInput: { /* required */
    s3DataSource: { /* required */
      path: 'STRING_VALUE', /* required */
      kmsKeyArn: 'STRING_VALUE'
    }
  },
  jobName: 'STRING_VALUE', /* required */
  jobOutput: { /* required */
    s3DataDestination: { /* required */
      path: 'STRING_VALUE', /* required */
      kmsKeyArn: 'STRING_VALUE'
    }
  },
  roleArn: 'STRING_VALUE', /* required */
  solutionVersionArn: 'STRING_VALUE', /* required */
  filterArn: 'STRING_VALUE',
  numResults: 'NUMBER_VALUE',
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createBatchSegmentJob(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: {})
    • jobName — (String)

      The name of the batch segment job to create.

    • solutionVersionArn — (String)

      The Amazon Resource Name (ARN) of the solution version you want the batch segment job to use to generate batch segments.

    • filterArn — (String)

      The ARN of the filter to apply to the batch segment job. For more information on using filters, see Filtering batch recommendations.

    • numResults — (Integer)

      The number of predicted users generated by the batch segment job for each line of input data. The maximum number of users per segment is 5 million.

    • jobInput — (map)

      The Amazon S3 path for the input data used to generate the batch segment job.

      • s3DataSourcerequired — (map)

        The configuration details of an Amazon S3 input or output bucket.

        • pathrequired — (String)

          The file path of the Amazon S3 bucket.

        • kmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

    • jobOutput — (map)

      The Amazon S3 path for the bucket where the job's output will be stored.

      • s3DataDestinationrequired — (map)

        The configuration details of an Amazon S3 input or output bucket.

        • pathrequired — (String)

          The file path of the Amazon S3 bucket.

        • kmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

    • roleArn — (String)

      The ARN of the Amazon Identity and Access Management role that has permissions to read and write to your input and output Amazon S3 buckets respectively.

    • tags — (Array<map>)

      A list of tags to apply to the batch segment job.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • batchSegmentJobArn — (String)

        The ARN of the batch segment job.

Returns:

  • (AWS.Request)

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

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

Creates a campaign that deploys a solution version. When a client calls the GetRecommendations and GetPersonalizedRanking APIs, a campaign is specified in the request.

Minimum Provisioned TPS and Auto-Scaling

A high minProvisionedTPS will increase your cost. We recommend starting with 1 for minProvisionedTPS (the default). Track your usage using Amazon CloudWatch metrics, and increase the minProvisionedTPS as necessary.

When you create an Amazon Personalize campaign, you can specify the minimum provisioned transactions per second (minProvisionedTPS) for the campaign. This is the baseline transaction throughput for the campaign provisioned by Amazon Personalize. It sets the minimum billing charge for the campaign while it is active. A transaction is a single GetRecommendations or GetPersonalizedRanking request. The default minProvisionedTPS is 1.

If your TPS increases beyond the minProvisionedTPS, Amazon Personalize auto-scales the provisioned capacity up and down, but never below minProvisionedTPS. There's a short time delay while the capacity is increased that might cause loss of transactions. When your traffic reduces, capacity returns to the minProvisionedTPS.

You are charged for the the minimum provisioned TPS or, if your requests exceed the minProvisionedTPS, the actual TPS. The actual TPS is the total number of recommendation requests you make. We recommend starting with a low minProvisionedTPS, track your usage using Amazon CloudWatch metrics, and then increase the minProvisionedTPS as necessary.

For more information about campaign costs, see Amazon Personalize pricing.

Status

A campaign can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING > DELETE IN_PROGRESS

To get the campaign status, call DescribeCampaign.

Note: Wait until the status of the campaign is ACTIVE before asking the campaign for recommendations.

Related APIs

Service Reference:

Examples:

Calling the createCampaign operation

var params = {
  name: 'STRING_VALUE', /* required */
  solutionVersionArn: 'STRING_VALUE', /* required */
  campaignConfig: {
    enableMetadataWithRecommendations: true || false,
    itemExplorationConfig: {
      '<ParameterName>': 'STRING_VALUE',
      /* '<ParameterName>': ... */
    }
  },
  minProvisionedTPS: 'NUMBER_VALUE',
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createCampaign(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: {})
    • name — (String)

      A name for the new campaign. The campaign name must be unique within your account.

    • solutionVersionArn — (String)

      The Amazon Resource Name (ARN) of the solution version to deploy.

    • minProvisionedTPS — (Integer)

      Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support. A high minProvisionedTPS will increase your bill. We recommend starting with 1 for minProvisionedTPS (the default). Track your usage using Amazon CloudWatch metrics, and increase the minProvisionedTPS as necessary.

    • campaignConfig — (map)

      The configuration details of a campaign.

      • itemExplorationConfig — (map<String>)

        Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your solution uses the User-Personalization recipe.

      • enableMetadataWithRecommendations — (Boolean)

        Whether metadata with recommendations is enabled for the campaign. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a campaign, see Enabling metadata in recommendations for a campaign.

        If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

    • tags — (Array<map>)

      A list of tags to apply to the campaign.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • campaignArn — (String)

        The Amazon Resource Name (ARN) of the campaign.

Returns:

  • (AWS.Request)

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

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

Creates an empty dataset and adds it to the specified dataset group. Use CreateDatasetImportJob to import your training data to a dataset.

There are 5 types of datasets:

  • Item interactions

  • Items

  • Users

  • Action interactions

  • Actions

Each dataset type has an associated schema with required field types. Only the Item interactions dataset is required in order to train a model (also referred to as creating a solution).

A dataset can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING > DELETE IN_PROGRESS

To get the status of the dataset, call DescribeDataset.

Related APIs

Service Reference:

Examples:

Calling the createDataset operation

var params = {
  datasetGroupArn: 'STRING_VALUE', /* required */
  datasetType: 'STRING_VALUE', /* required */
  name: 'STRING_VALUE', /* required */
  schemaArn: 'STRING_VALUE', /* required */
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.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: {})
    • name — (String)

      The name for the dataset.

    • schemaArn — (String)

      The ARN of the schema to associate with the dataset. The schema defines the dataset fields.

    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the dataset group to add the dataset to.

    • datasetType — (String)

      The type of dataset.

      One of the following (case insensitive) values:

      • Interactions

      • Items

      • Users

      • Actions

      • Action_Interactions

    • tags — (Array<map>)

      A list of tags to apply to the dataset.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • datasetArn — (String)

        The ARN of the dataset.

Returns:

  • (AWS.Request)

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

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

Creates a job that exports data from your dataset to an Amazon S3 bucket. To allow Amazon Personalize to export the training data, you must specify an service-linked IAM role that gives Amazon Personalize PutObject permissions for your Amazon S3 bucket. For information, see Exporting a dataset in the Amazon Personalize developer guide.

Status

A dataset export job can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

To get the status of the export job, call DescribeDatasetExportJob, and specify the Amazon Resource Name (ARN) of the dataset export job. The dataset export is complete when the status shows as ACTIVE. If the status shows as CREATE FAILED, the response includes a failureReason key, which describes why the job failed.

Service Reference:

Examples:

Calling the createDatasetExportJob operation

var params = {
  datasetArn: 'STRING_VALUE', /* required */
  jobName: 'STRING_VALUE', /* required */
  jobOutput: { /* required */
    s3DataDestination: { /* required */
      path: 'STRING_VALUE', /* required */
      kmsKeyArn: 'STRING_VALUE'
    }
  },
  roleArn: 'STRING_VALUE', /* required */
  ingestionMode: BULK | PUT | ALL,
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createDatasetExportJob(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: {})
    • jobName — (String)

      The name for the dataset export job.

    • datasetArn — (String)

      The Amazon Resource Name (ARN) of the dataset that contains the data to export.

    • ingestionMode — (String)

      The data to export, based on how you imported the data. You can choose to export only BULK data that you imported using a dataset import job, only PUT data that you imported incrementally (using the console, PutEvents, PutUsers and PutItems operations), or ALL for both types. The default value is PUT.

      Possible values include:
      • "BULK"
      • "PUT"
      • "ALL"
    • roleArn — (String)

      The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket.

    • jobOutput — (map)

      The path to the Amazon S3 bucket where the job's output is stored.

      • s3DataDestinationrequired — (map)

        The configuration details of an Amazon S3 input or output bucket.

        • pathrequired — (String)

          The file path of the Amazon S3 bucket.

        • kmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

    • tags — (Array<map>)

      A list of tags to apply to the dataset export job.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • datasetExportJobArn — (String)

        The Amazon Resource Name (ARN) of the dataset export job.

Returns:

  • (AWS.Request)

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

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

Creates an empty dataset group. A dataset group is a container for Amazon Personalize resources. A dataset group can contain at most three datasets, one for each type of dataset:

  • Item interactions

  • Items

  • Users

  • Actions

  • Action interactions

A dataset group can be a Domain dataset group, where you specify a domain and use pre-configured resources like recommenders, or a Custom dataset group, where you use custom resources, such as a solution with a solution version, that you deploy with a campaign. If you start with a Domain dataset group, you can still add custom resources such as solutions and solution versions trained with recipes for custom use cases and deployed with campaigns.

A dataset group can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING

To get the status of the dataset group, call DescribeDatasetGroup. If the status shows as CREATE FAILED, the response includes a failureReason key, which describes why the creation failed.

Note: You must wait until the status of the dataset group is ACTIVE before adding a dataset to the group.

You can specify an Key Management Service (KMS) key to encrypt the datasets in the group. If you specify a KMS key, you must also include an Identity and Access Management (IAM) role that has permission to access the key.

APIs that require a dataset group ARN in the request

Related APIs

Service Reference:

Examples:

Calling the createDatasetGroup operation

var params = {
  name: 'STRING_VALUE', /* required */
  domain: ECOMMERCE | VIDEO_ON_DEMAND,
  kmsKeyArn: 'STRING_VALUE',
  roleArn: 'STRING_VALUE',
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createDatasetGroup(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: {})
    • name — (String)

      The name for the new dataset group.

    • roleArn — (String)

      The ARN of the Identity and Access Management (IAM) role that has permissions to access the Key Management Service (KMS) key. Supplying an IAM role is only valid when also specifying a KMS key.

    • kmsKeyArn — (String)

      The Amazon Resource Name (ARN) of a Key Management Service (KMS) key used to encrypt the datasets.

    • domain — (String)

      The domain of the dataset group. Specify a domain to create a Domain dataset group. The domain you specify determines the default schemas for datasets and the use cases available for recommenders. If you don't specify a domain, you create a Custom dataset group with solution versions that you deploy with a campaign.

      Possible values include:
      • "ECOMMERCE"
      • "VIDEO_ON_DEMAND"
    • tags — (Array<map>)

      A list of tags to apply to the dataset group.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • datasetGroupArn — (String)

        The Amazon Resource Name (ARN) of the new dataset group.

      • domain — (String)

        The domain for the new Domain dataset group.

        Possible values include:
        • "ECOMMERCE"
        • "VIDEO_ON_DEMAND"

Returns:

  • (AWS.Request)

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

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

Creates a job that imports training data from your data source (an Amazon S3 bucket) to an Amazon Personalize dataset. To allow Amazon Personalize to import the training data, you must specify an IAM service role that has permission to read from the data source, as Amazon Personalize makes a copy of your data and processes it internally. For information on granting access to your Amazon S3 bucket, see Giving Amazon Personalize Access to Amazon S3 Resources.

If you already created a recommender or deployed a custom solution version with a campaign, how new bulk records influence recommendations depends on the domain use case or recipe that you use. For more information, see How new data influences real-time recommendations.

By default, a dataset import job replaces any existing data in the dataset that you imported in bulk. To add new records without replacing existing data, specify INCREMENTAL for the import mode in the CreateDatasetImportJob operation.

Status

A dataset import job can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

To get the status of the import job, call DescribeDatasetImportJob, providing the Amazon Resource Name (ARN) of the dataset import job. The dataset import is complete when the status shows as ACTIVE. If the status shows as CREATE FAILED, the response includes a failureReason key, which describes why the job failed.

Note: Importing takes time. You must wait until the status shows as ACTIVE before training a model using the dataset.

Related APIs

Service Reference:

Examples:

Calling the createDatasetImportJob operation

var params = {
  dataSource: { /* required */
    dataLocation: 'STRING_VALUE'
  },
  datasetArn: 'STRING_VALUE', /* required */
  jobName: 'STRING_VALUE', /* required */
  roleArn: 'STRING_VALUE', /* required */
  importMode: FULL | INCREMENTAL,
  publishAttributionMetricsToS3: true || false,
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createDatasetImportJob(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: {})
    • jobName — (String)

      The name for the dataset import job.

    • datasetArn — (String)

      The ARN of the dataset that receives the imported data.

    • dataSource — (map)

      The Amazon S3 bucket that contains the training data to import.

      • dataLocation — (String)

        The path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored. For example:

        s3://bucket-name/folder-name/

    • roleArn — (String)

      The ARN of the IAM role that has permissions to read from the Amazon S3 data source.

    • tags — (Array<map>)

      A list of tags to apply to the dataset import job.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

    • importMode — (String)

      Specify how to add the new records to an existing dataset. The default import mode is FULL. If you haven't imported bulk records into the dataset previously, you can only specify FULL.

      • Specify FULL to overwrite all existing bulk data in your dataset. Data you imported individually is not replaced.

      • Specify INCREMENTAL to append the new records to the existing data in your dataset. Amazon Personalize replaces any record with the same ID with the new one.

      Possible values include:
      • "FULL"
      • "INCREMENTAL"
    • publishAttributionMetricsToS3 — (Boolean)

      If you created a metric attribution, specify whether to publish metrics for this import job to Amazon S3

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:

      • datasetImportJobArn — (String)

        The ARN of the dataset import job.

Returns:

  • (AWS.Request)

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

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

Creates an event tracker that you use when adding event data to a specified dataset group using the PutEvents API.

Note: Only one event tracker can be associated with a dataset group. You will get an error if you call CreateEventTracker using the same dataset group as an existing event tracker.

When you create an event tracker, the response includes a tracking ID, which you pass as a parameter when you use the PutEvents operation. Amazon Personalize then appends the event data to the Item interactions dataset of the dataset group you specify in your event tracker.

The event tracker can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING > DELETE IN_PROGRESS

To get the status of the event tracker, call DescribeEventTracker.

Note: The event tracker must be in the ACTIVE state before using the tracking ID.

Related APIs

Service Reference:

Examples:

Calling the createEventTracker operation

var params = {
  datasetGroupArn: 'STRING_VALUE', /* required */
  name: 'STRING_VALUE', /* required */
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createEventTracker(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: {})
    • name — (String)

      The name for the event tracker.

    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the dataset group that receives the event data.

    • tags — (Array<map>)

      A list of tags to apply to the event tracker.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • eventTrackerArn — (String)

        The ARN of the event tracker.

      • trackingId — (String)

        The ID of the event tracker. Include this ID in requests to the PutEvents API.

Returns:

  • (AWS.Request)

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

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

Creates a recommendation filter. For more information, see Filtering recommendations and user segments.

Service Reference:

Examples:

Calling the createFilter operation

var params = {
  datasetGroupArn: 'STRING_VALUE', /* required */
  filterExpression: 'STRING_VALUE', /* required */
  name: 'STRING_VALUE', /* required */
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createFilter(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: {})
    • name — (String)

      The name of the filter to create.

    • datasetGroupArn — (String)

      The ARN of the dataset group that the filter will belong to.

    • filterExpression — (String)

      The filter expression defines which items are included or excluded from recommendations. Filter expression must follow specific format rules. For information about filter expression structure and syntax, see Filter expressions.

    • tags — (Array<map>)

      A list of tags to apply to the filter.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • filterArn — (String)

        The ARN of the new filter.

Returns:

  • (AWS.Request)

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

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

Creates a metric attribution. A metric attribution creates reports on the data that you import into Amazon Personalize. Depending on how you imported the data, you can view reports in Amazon CloudWatch or Amazon S3. For more information, see Measuring impact of recommendations.

Service Reference:

Examples:

Calling the createMetricAttribution operation

var params = {
  datasetGroupArn: 'STRING_VALUE', /* required */
  metrics: [ /* required */
    {
      eventType: 'STRING_VALUE', /* required */
      expression: 'STRING_VALUE', /* required */
      metricName: 'STRING_VALUE' /* required */
    },
    /* more items */
  ],
  metricsOutputConfig: { /* required */
    roleArn: 'STRING_VALUE', /* required */
    s3DataDestination: {
      path: 'STRING_VALUE', /* required */
      kmsKeyArn: 'STRING_VALUE'
    }
  },
  name: 'STRING_VALUE' /* required */
};
personalize.createMetricAttribution(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: {})
    • name — (String)

      A name for the metric attribution.

    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the destination dataset group for the metric attribution.

    • metrics — (Array<map>)

      A list of metric attributes for the metric attribution. Each metric attribute specifies an event type to track and a function. Available functions are SUM() or SAMPLECOUNT(). For SUM() functions, provide the dataset type (either Interactions or Items) and column to sum as a parameter. For example SUM(Items.PRICE).

      • eventTyperequired — (String)

        The metric's event type.

      • metricNamerequired — (String)

        The metric's name. The name helps you identify the metric in Amazon CloudWatch or Amazon S3.

      • expressionrequired — (String)

        The attribute's expression. Available functions are SUM() or SAMPLECOUNT(). For SUM() functions, provide the dataset type (either Interactions or Items) and column to sum as a parameter. For example SUM(Items.PRICE).

    • metricsOutputConfig — (map)

      The output configuration details for the metric attribution.

      • s3DataDestination — (map)

        The configuration details of an Amazon S3 input or output bucket.

        • pathrequired — (String)

          The file path of the Amazon S3 bucket.

        • kmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

      • roleArnrequired — (String)

        The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket and add metrics to Amazon CloudWatch. For more information, see Measuring impact of recommendations.

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:

      • metricAttributionArn — (String)

        The Amazon Resource Name (ARN) for the new metric attribution.

Returns:

  • (AWS.Request)

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

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

Creates a recommender with the recipe (a Domain dataset group use case) you specify. You create recommenders for a Domain dataset group and specify the recommender's Amazon Resource Name (ARN) when you make a GetRecommendations request.

Minimum recommendation requests per second

A high minRecommendationRequestsPerSecond will increase your bill. We recommend starting with 1 for minRecommendationRequestsPerSecond (the default). Track your usage using Amazon CloudWatch metrics, and increase the minRecommendationRequestsPerSecond as necessary.

When you create a recommender, you can configure the recommender's minimum recommendation requests per second. The minimum recommendation requests per second (minRecommendationRequestsPerSecond) specifies the baseline recommendation request throughput provisioned by Amazon Personalize. The default minRecommendationRequestsPerSecond is 1. A recommendation request is a single GetRecommendations operation. Request throughput is measured in requests per second and Amazon Personalize uses your requests per second to derive your requests per hour and the price of your recommender usage.

If your requests per second increases beyond minRecommendationRequestsPerSecond, Amazon Personalize auto-scales the provisioned capacity up and down, but never below minRecommendationRequestsPerSecond. There's a short time delay while the capacity is increased that might cause loss of requests.

Your bill is the greater of either the minimum requests per hour (based on minRecommendationRequestsPerSecond) or the actual number of requests. The actual request throughput used is calculated as the average requests/second within a one-hour window. We recommend starting with the default minRecommendationRequestsPerSecond, track your usage using Amazon CloudWatch metrics, and then increase the minRecommendationRequestsPerSecond as necessary.

Status

A recommender can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

  • STOP PENDING > STOP IN_PROGRESS > INACTIVE > START PENDING > START IN_PROGRESS > ACTIVE

  • DELETE PENDING > DELETE IN_PROGRESS

To get the recommender status, call DescribeRecommender.

Note: Wait until the status of the recommender is ACTIVE before asking the recommender for recommendations.

Related APIs

Service Reference:

Examples:

Calling the createRecommender operation

var params = {
  datasetGroupArn: 'STRING_VALUE', /* required */
  name: 'STRING_VALUE', /* required */
  recipeArn: 'STRING_VALUE', /* required */
  recommenderConfig: {
    enableMetadataWithRecommendations: true || false,
    itemExplorationConfig: {
      '<ParameterName>': 'STRING_VALUE',
      /* '<ParameterName>': ... */
    },
    minRecommendationRequestsPerSecond: 'NUMBER_VALUE',
    trainingDataConfig: {
      excludedDatasetColumns: {
        '<DatasetType>': [
          'STRING_VALUE',
          /* more items */
        ],
        /* '<DatasetType>': ... */
      }
    }
  },
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createRecommender(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: {})
    • name — (String)

      The name of the recommender.

    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the destination domain dataset group for the recommender.

    • recipeArn — (String)

      The Amazon Resource Name (ARN) of the recipe that the recommender will use. For a recommender, a recipe is a Domain dataset group use case. Only Domain dataset group use cases can be used to create a recommender. For information about use cases see Choosing recommender use cases.

    • recommenderConfig — (map)

      The configuration details of the recommender.

      • itemExplorationConfig — (map<String>)

        Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your recommenders generate personalized recommendations for a user (not popular items or similar items).

      • minRecommendationRequestsPerSecond — (Integer)

        Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support. A high minRecommendationRequestsPerSecond will increase your bill. We recommend starting with 1 for minRecommendationRequestsPerSecond (the default). Track your usage using Amazon CloudWatch metrics, and increase the minRecommendationRequestsPerSecond as necessary.

      • trainingDataConfig — (map)

        Specifies the training data configuration to use when creating a domain recommender.

        • excludedDatasetColumns — (map<Array<String>>)

          Specifies the columns to exclude from training. Each key is a dataset type, and each value is a list of columns. Exclude columns to control what data Amazon Personalize uses to generate recommendations. For example, you might have a column that you want to use only to filter recommendations. You can exclude this column from training and Amazon Personalize considers it only when filtering.

      • enableMetadataWithRecommendations — (Boolean)

        Whether metadata with recommendations is enabled for the recommender. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a recommender, see Enabling metadata in recommendations for a recommender.

        If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

    • tags — (Array<map>)

      A list of tags to apply to the recommender.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • recommenderArn — (String)

        The Amazon Resource Name (ARN) of the recommender.

Returns:

  • (AWS.Request)

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

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

Creates an Amazon Personalize schema from the specified schema string. The schema you create must be in Avro JSON format.

Amazon Personalize recognizes three schema variants. Each schema is associated with a dataset type and has a set of required field and keywords. If you are creating a schema for a dataset in a Domain dataset group, you provide the domain of the Domain dataset group. You specify a schema when you call CreateDataset.

Related APIs

Service Reference:

Examples:

Calling the createSchema operation

var params = {
  name: 'STRING_VALUE', /* required */
  schema: 'STRING_VALUE', /* required */
  domain: ECOMMERCE | VIDEO_ON_DEMAND
};
personalize.createSchema(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: {})
    • name — (String)

      The name for the schema.

    • schema — (String)

      A schema in Avro JSON format.

    • domain — (String)

      The domain for the schema. If you are creating a schema for a dataset in a Domain dataset group, specify the domain you chose when you created the Domain dataset group.

      Possible values include:
      • "ECOMMERCE"
      • "VIDEO_ON_DEMAND"

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:

      • schemaArn — (String)

        The Amazon Resource Name (ARN) of the created schema.

Returns:

  • (AWS.Request)

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

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

Creates the configuration for training a model. A trained model is known as a solution version. After the configuration is created, you train the model (create a solution version) by calling the CreateSolutionVersion operation. Every time you call CreateSolutionVersion, a new version of the solution is created.

After creating a solution version, you check its accuracy by calling GetSolutionMetrics. When you are satisfied with the version, you deploy it using CreateCampaign. The campaign provides recommendations to a client through the GetRecommendations API.

To train a model, Amazon Personalize requires training data and a recipe. The training data comes from the dataset group that you provide in the request. A recipe specifies the training algorithm and a feature transformation. You can specify one of the predefined recipes provided by Amazon Personalize.

Note: Amazon Personalize doesn't support configuring the hpoObjective for solution hyperparameter optimization at this time.

Status

A solution can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING > DELETE IN_PROGRESS

To get the status of the solution, call DescribeSolution. Wait until the status shows as ACTIVE before calling CreateSolutionVersion.

Related APIs

Service Reference:

Examples:

Calling the createSolution operation

var params = {
  datasetGroupArn: 'STRING_VALUE', /* required */
  name: 'STRING_VALUE', /* required */
  eventType: 'STRING_VALUE',
  performAutoML: true || false,
  performHPO: true || false,
  recipeArn: 'STRING_VALUE',
  solutionConfig: {
    algorithmHyperParameters: {
      '<ParameterName>': 'STRING_VALUE',
      /* '<ParameterName>': ... */
    },
    autoMLConfig: {
      metricName: 'STRING_VALUE',
      recipeList: [
        'STRING_VALUE',
        /* more items */
      ]
    },
    eventValueThreshold: 'STRING_VALUE',
    featureTransformationParameters: {
      '<ParameterName>': 'STRING_VALUE',
      /* '<ParameterName>': ... */
    },
    hpoConfig: {
      algorithmHyperParameterRanges: {
        categoricalHyperParameterRanges: [
          {
            name: 'STRING_VALUE',
            values: [
              'STRING_VALUE',
              /* more items */
            ]
          },
          /* more items */
        ],
        continuousHyperParameterRanges: [
          {
            maxValue: 'NUMBER_VALUE',
            minValue: 'NUMBER_VALUE',
            name: 'STRING_VALUE'
          },
          /* more items */
        ],
        integerHyperParameterRanges: [
          {
            maxValue: 'NUMBER_VALUE',
            minValue: 'NUMBER_VALUE',
            name: 'STRING_VALUE'
          },
          /* more items */
        ]
      },
      hpoObjective: {
        metricName: 'STRING_VALUE',
        metricRegex: 'STRING_VALUE',
        type: 'STRING_VALUE'
      },
      hpoResourceConfig: {
        maxNumberOfTrainingJobs: 'STRING_VALUE',
        maxParallelTrainingJobs: 'STRING_VALUE'
      }
    },
    optimizationObjective: {
      itemAttribute: 'STRING_VALUE',
      objectiveSensitivity: LOW | MEDIUM | HIGH | OFF
    },
    trainingDataConfig: {
      excludedDatasetColumns: {
        '<DatasetType>': [
          'STRING_VALUE',
          /* more items */
        ],
        /* '<DatasetType>': ... */
      }
    }
  },
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.createSolution(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: {})
    • name — (String)

      The name for the solution.

    • performHPO — (Boolean)

      Whether to perform hyperparameter optimization (HPO) on the specified or selected recipe. The default is false.

      When performing AutoML, this parameter is always true and you should not set it to false.

    • performAutoML — (Boolean)

      We don't recommend enabling automated machine learning. Instead, match your use case to the available Amazon Personalize recipes. For more information, see Choosing a recipe.

      Whether to perform automated machine learning (AutoML). The default is false. For this case, you must specify recipeArn.

      When set to true, Amazon Personalize analyzes your training data and selects the optimal USER_PERSONALIZATION recipe and hyperparameters. In this case, you must omit recipeArn. Amazon Personalize determines the optimal recipe by running tests with different values for the hyperparameters. AutoML lengthens the training process as compared to selecting a specific recipe.

    • recipeArn — (String)

      The Amazon Resource Name (ARN) of the recipe to use for model training. This is required when performAutoML is false. For information about different Amazon Personalize recipes and their ARNs, see Choosing a recipe.

    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the dataset group that provides the training data.

    • eventType — (String)

      When your have multiple event types (using an EVENT_TYPE schema field), this parameter specifies which event type (for example, 'click' or 'like') is used for training the model.

      If you do not provide an eventType, Amazon Personalize will use all interactions for training with equal weight regardless of type.

    • solutionConfig — (map)

      The configuration to use with the solution. When performAutoML is set to true, Amazon Personalize only evaluates the autoMLConfig section of the solution configuration.

      Note: Amazon Personalize doesn't support configuring the hpoObjective at this time.
      • eventValueThreshold — (String)

        Only events with a value greater than or equal to this threshold are used for training a model.

      • hpoConfig — (map)

        Describes the properties for hyperparameter optimization (HPO).

        • hpoObjective — (map)

          The metric to optimize during HPO.

          Note: Amazon Personalize doesn't support configuring the hpoObjective at this time.
          • type — (String)

            The type of the metric. Valid values are Maximize and Minimize.

          • metricName — (String)

            The name of the metric.

          • metricRegex — (String)

            A regular expression for finding the metric in the training job logs.

        • hpoResourceConfig — (map)

          Describes the resource configuration for HPO.

          • maxNumberOfTrainingJobs — (String)

            The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.

          • maxParallelTrainingJobs — (String)

            The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.

        • algorithmHyperParameterRanges — (map)

          The hyperparameters and their allowable ranges.

          • integerHyperParameterRanges — (Array<map>)

            The integer-valued hyperparameters and their ranges.

            • name — (String)

              The name of the hyperparameter.

            • minValue — (Integer)

              The minimum allowable value for the hyperparameter.

            • maxValue — (Integer)

              The maximum allowable value for the hyperparameter.

          • continuousHyperParameterRanges — (Array<map>)

            The continuous hyperparameters and their ranges.

            • name — (String)

              The name of the hyperparameter.

            • minValue — (Float)

              The minimum allowable value for the hyperparameter.

            • maxValue — (Float)

              The maximum allowable value for the hyperparameter.

          • categoricalHyperParameterRanges — (Array<map>)

            The categorical hyperparameters and their ranges.

            • name — (String)

              The name of the hyperparameter.

            • values — (Array<String>)

              A list of the categories for the hyperparameter.

      • algorithmHyperParameters — (map<String>)

        Lists the algorithm hyperparameters and their values.

      • featureTransformationParameters — (map<String>)

        Lists the feature transformation parameters.

      • autoMLConfig — (map)

        The AutoMLConfig object containing a list of recipes to search when AutoML is performed.

        • metricName — (String)

          The metric to optimize.

        • recipeList — (Array<String>)

          The list of candidate recipes.

      • optimizationObjective — (map)

        Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see Optimizing a solution.

        • itemAttribute — (String)

          The numerical metadata column in an Items dataset related to the optimization objective. For example, VIDEO_LENGTH (to maximize streaming minutes), or PRICE (to maximize revenue).

        • objectiveSensitivity — (String)

          Specifies how Amazon Personalize balances the importance of your optimization objective versus relevance.

          Possible values include:
          • "LOW"
          • "MEDIUM"
          • "HIGH"
          • "OFF"
      • trainingDataConfig — (map)

        Specifies the training data configuration to use when creating a custom solution version (trained model).

        • excludedDatasetColumns — (map<Array<String>>)

          Specifies the columns to exclude from training. Each key is a dataset type, and each value is a list of columns. Exclude columns to control what data Amazon Personalize uses to generate recommendations. For example, you might have a column that you want to use only to filter recommendations. You can exclude this column from training and Amazon Personalize considers it only when filtering.

    • tags — (Array<map>)

      A list of tags to apply to the solution.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • solutionArn — (String)

        The ARN of the solution.

Returns:

  • (AWS.Request)

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

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

Trains or retrains an active solution in a Custom dataset group. A solution is created using the CreateSolution operation and must be in the ACTIVE state before calling CreateSolutionVersion. A new version of the solution is created every time you call this operation.

Status

A solution version can be in one of the following states:

  • CREATE PENDING

  • CREATE IN_PROGRESS

  • ACTIVE

  • CREATE FAILED

  • CREATE STOPPING

  • CREATE STOPPED

To get the status of the version, call DescribeSolutionVersion. Wait until the status shows as ACTIVE before calling CreateCampaign.

If the status shows as CREATE FAILED, the response includes a failureReason key, which describes why the job failed.

Related APIs

Service Reference:

Examples:

Calling the createSolutionVersion operation

var params = {
  solutionArn: 'STRING_VALUE', /* required */
  name: 'STRING_VALUE',
  tags: [
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ],
  trainingMode: FULL | UPDATE
};
personalize.createSolutionVersion(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: {})
    • name — (String)

      The name of the solution version.

    • solutionArn — (String)

      The Amazon Resource Name (ARN) of the solution containing the training configuration information.

    • trainingMode — (String)

      The scope of training to be performed when creating the solution version. The default is FULL. This creates a completely new model based on the entirety of the training data from the datasets in your dataset group.

      If you use User-Personalization, you can specify a training mode of UPDATE. This updates the model to consider new items for recommendations. It is not a full retraining. You should still complete a full retraining weekly. If you specify UPDATE, Amazon Personalize will stop automatic updates for the solution version. To resume updates, create a new solution with training mode set to FULL and deploy it in a campaign. For more information about automatic updates, see Automatic updates.

      The UPDATE option can only be used when you already have an active solution version created from the input solution using the FULL option and the input solution was trained with the User-Personalization recipe or the legacy HRNN-Coldstart recipe.

      Possible values include:
      • "FULL"
      • "UPDATE"
    • tags — (Array<map>)

      A list of tags to apply to the solution version.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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:

      • solutionVersionArn — (String)

        The ARN of the new solution version.

Returns:

  • (AWS.Request)

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

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

Removes a campaign by deleting the solution deployment. The solution that the campaign is based on is not deleted and can be redeployed when needed. A deleted campaign can no longer be specified in a GetRecommendations request. For information on creating campaigns, see CreateCampaign.

Service Reference:

Examples:

Calling the deleteCampaign operation

var params = {
  campaignArn: 'STRING_VALUE' /* required */
};
personalize.deleteCampaign(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: {})
    • campaignArn — (String)

      The Amazon Resource Name (ARN) of the campaign to delete.

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.

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

Deletes a dataset. You can't delete a dataset if an associated DatasetImportJob or SolutionVersion is in the CREATE PENDING or IN PROGRESS state. For more information on datasets, see CreateDataset.

Service Reference:

Examples:

Calling the deleteDataset operation

var params = {
  datasetArn: 'STRING_VALUE' /* required */
};
personalize.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: {})
    • datasetArn — (String)

      The Amazon Resource Name (ARN) of the dataset to delete.

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.

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

Deletes a dataset group. Before you delete a dataset group, you must delete the following:

  • All associated event trackers.

  • All associated solutions.

  • All datasets in the dataset group.

Service Reference:

Examples:

Calling the deleteDatasetGroup operation

var params = {
  datasetGroupArn: 'STRING_VALUE' /* required */
};
personalize.deleteDatasetGroup(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: {})
    • datasetGroupArn — (String)

      The ARN of the dataset group to delete.

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.

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

Deletes the event tracker. Does not delete the dataset from the dataset group. For more information on event trackers, see CreateEventTracker.

Service Reference:

Examples:

Calling the deleteEventTracker operation

var params = {
  eventTrackerArn: 'STRING_VALUE' /* required */
};
personalize.deleteEventTracker(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: {})
    • eventTrackerArn — (String)

      The Amazon Resource Name (ARN) of the event tracker to delete.

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.

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

Deletes a filter.

Service Reference:

Examples:

Calling the deleteFilter operation

var params = {
  filterArn: 'STRING_VALUE' /* required */
};
personalize.deleteFilter(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: {})
    • filterArn — (String)

      The ARN of the filter to delete.

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.

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

Deletes a metric attribution.

Service Reference:

Examples:

Calling the deleteMetricAttribution operation

var params = {
  metricAttributionArn: 'STRING_VALUE' /* required */
};
personalize.deleteMetricAttribution(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: {})
    • metricAttributionArn — (String)

      The metric attribution's Amazon Resource Name (ARN).

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.

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

Deactivates and removes a recommender. A deleted recommender can no longer be specified in a GetRecommendations request.

Service Reference:

Examples:

Calling the deleteRecommender operation

var params = {
  recommenderArn: 'STRING_VALUE' /* required */
};
personalize.deleteRecommender(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: {})
    • recommenderArn — (String)

      The Amazon Resource Name (ARN) of the recommender to delete.

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.

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

Deletes a schema. Before deleting a schema, you must delete all datasets referencing the schema. For more information on schemas, see CreateSchema.

Service Reference:

Examples:

Calling the deleteSchema operation

var params = {
  schemaArn: 'STRING_VALUE' /* required */
};
personalize.deleteSchema(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: {})
    • schemaArn — (String)

      The Amazon Resource Name (ARN) of the schema to delete.

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.

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

Deletes all versions of a solution and the Solution object itself. Before deleting a solution, you must delete all campaigns based on the solution. To determine what campaigns are using the solution, call ListCampaigns and supply the Amazon Resource Name (ARN) of the solution. You can't delete a solution if an associated SolutionVersion is in the CREATE PENDING or IN PROGRESS state. For more information on solutions, see CreateSolution.

Service Reference:

Examples:

Calling the deleteSolution operation

var params = {
  solutionArn: 'STRING_VALUE' /* required */
};
personalize.deleteSolution(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: {})
    • solutionArn — (String)

      The ARN of the solution to delete.

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.

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

Describes the given algorithm.

Service Reference:

Examples:

Calling the describeAlgorithm operation

var params = {
  algorithmArn: 'STRING_VALUE' /* required */
};
personalize.describeAlgorithm(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: {})
    • algorithmArn — (String)

      The Amazon Resource Name (ARN) of the algorithm 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:

      • algorithm — (map)

        A listing of the properties of the algorithm.

        • name — (String)

          The name of the algorithm.

        • algorithmArn — (String)

          The Amazon Resource Name (ARN) of the algorithm.

        • algorithmImage — (map)

          The URI of the Docker container for the algorithm image.

          • name — (String)

            The name of the algorithm image.

          • dockerURIrequired — (String)

            The URI of the Docker container for the algorithm image.

        • defaultHyperParameters — (map<String>)

          Specifies the default hyperparameters.

        • defaultHyperParameterRanges — (map)

          Specifies the default hyperparameters, their ranges, and whether they are tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).

          • integerHyperParameterRanges — (Array<map>)

            The integer-valued hyperparameters and their default ranges.

            • name — (String)

              The name of the hyperparameter.

            • minValue — (Integer)

              The minimum allowable value for the hyperparameter.

            • maxValue — (Integer)

              The maximum allowable value for the hyperparameter.

            • isTunable — (Boolean)

              Indicates whether the hyperparameter is tunable.

          • continuousHyperParameterRanges — (Array<map>)

            The continuous hyperparameters and their default ranges.

            • name — (String)

              The name of the hyperparameter.

            • minValue — (Float)

              The minimum allowable value for the hyperparameter.

            • maxValue — (Float)

              The maximum allowable value for the hyperparameter.

            • isTunable — (Boolean)

              Whether the hyperparameter is tunable.

          • categoricalHyperParameterRanges — (Array<map>)

            The categorical hyperparameters and their default ranges.

            • name — (String)

              The name of the hyperparameter.

            • values — (Array<String>)

              A list of the categories for the hyperparameter.

            • isTunable — (Boolean)

              Whether the hyperparameter is tunable.

        • defaultResourceConfig — (map<String>)

          Specifies the default maximum number of training jobs and parallel training jobs.

        • trainingInputMode — (String)

          The training input mode.

        • roleArn — (String)

          The Amazon Resource Name (ARN) of the role.

        • creationDateTime — (Date)

          The date and time (in Unix time) that the algorithm was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the algorithm was last updated.

Returns:

  • (AWS.Request)

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

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

Gets the properties of a batch inference job including name, Amazon Resource Name (ARN), status, input and output configurations, and the ARN of the solution version used to generate the recommendations.

Service Reference:

Examples:

Calling the describeBatchInferenceJob operation

var params = {
  batchInferenceJobArn: 'STRING_VALUE' /* required */
};
personalize.describeBatchInferenceJob(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: {})
    • batchInferenceJobArn — (String)

      The ARN of the batch inference job 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:

      • batchInferenceJob — (map)

        Information on the specified batch inference job.

        • jobName — (String)

          The name of the batch inference job.

        • batchInferenceJobArn — (String)

          The Amazon Resource Name (ARN) of the batch inference job.

        • filterArn — (String)

          The ARN of the filter used on the batch inference job.

        • failureReason — (String)

          If the batch inference job failed, the reason for the failure.

        • solutionVersionArn — (String)

          The Amazon Resource Name (ARN) of the solution version from which the batch inference job was created.

        • numResults — (Integer)

          The number of recommendations generated by the batch inference job. This number includes the error messages generated for failed input records.

        • jobInput — (map)

          The Amazon S3 path that leads to the input data used to generate the batch inference job.

          • s3DataSourcerequired — (map)

            The URI of the Amazon S3 location that contains your input data. The Amazon S3 bucket must be in the same region as the API endpoint you are calling.

            • pathrequired — (String)

              The file path of the Amazon S3 bucket.

            • kmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

        • jobOutput — (map)

          The Amazon S3 bucket that contains the output data generated by the batch inference job.

          • s3DataDestinationrequired — (map)

            Information on the Amazon S3 bucket in which the batch inference job's output is stored.

            • pathrequired — (String)

              The file path of the Amazon S3 bucket.

            • kmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

        • batchInferenceJobConfig — (map)

          A string to string map of the configuration details of a batch inference job.

          • itemExplorationConfig — (map<String>)

            A string to string map specifying the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. See User-Personalization.

        • roleArn — (String)

          The ARN of the Amazon Identity and Access Management (IAM) role that requested the batch inference job.

        • batchInferenceJobMode — (String)

          The job's mode.

          Possible values include:
          • "BATCH_INFERENCE"
          • "THEME_GENERATION"
        • themeGenerationConfig — (map)

          The job's theme generation settings.

          • fieldsForThemeGenerationrequired — (map)

            Fields used to generate descriptive themes for a batch inference job.

            • itemNamerequired — (String)

              The name of the Items dataset column that stores the name of each item in the dataset.

        • status — (String)

          The status of the batch inference job. The status is one of the following values:

          • PENDING

          • IN PROGRESS

          • ACTIVE

          • CREATE FAILED

        • creationDateTime — (Date)

          The time at which the batch inference job was created.

        • lastUpdatedDateTime — (Date)

          The time at which the batch inference job was last updated.

Returns:

  • (AWS.Request)

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

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

Gets the properties of a batch segment job including name, Amazon Resource Name (ARN), status, input and output configurations, and the ARN of the solution version used to generate segments.

Service Reference:

Examples:

Calling the describeBatchSegmentJob operation

var params = {
  batchSegmentJobArn: 'STRING_VALUE' /* required */
};
personalize.describeBatchSegmentJob(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: {})
    • batchSegmentJobArn — (String)

      The ARN of the batch segment job 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:

      • batchSegmentJob — (map)

        Information on the specified batch segment job.

        • jobName — (String)

          The name of the batch segment job.

        • batchSegmentJobArn — (String)

          The Amazon Resource Name (ARN) of the batch segment job.

        • filterArn — (String)

          The ARN of the filter used on the batch segment job.

        • failureReason — (String)

          If the batch segment job failed, the reason for the failure.

        • solutionVersionArn — (String)

          The Amazon Resource Name (ARN) of the solution version used by the batch segment job to generate batch segments.

        • numResults — (Integer)

          The number of predicted users generated by the batch segment job for each line of input data. The maximum number of users per segment is 5 million.

        • jobInput — (map)

          The Amazon S3 path that leads to the input data used to generate the batch segment job.

          • s3DataSourcerequired — (map)

            The configuration details of an Amazon S3 input or output bucket.

            • pathrequired — (String)

              The file path of the Amazon S3 bucket.

            • kmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

        • jobOutput — (map)

          The Amazon S3 bucket that contains the output data generated by the batch segment job.

          • s3DataDestinationrequired — (map)

            The configuration details of an Amazon S3 input or output bucket.

            • pathrequired — (String)

              The file path of the Amazon S3 bucket.

            • kmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

        • roleArn — (String)

          The ARN of the Amazon Identity and Access Management (IAM) role that requested the batch segment job.

        • status — (String)

          The status of the batch segment job. The status is one of the following values:

          • PENDING

          • IN PROGRESS

          • ACTIVE

          • CREATE FAILED

        • creationDateTime — (Date)

          The time at which the batch segment job was created.

        • lastUpdatedDateTime — (Date)

          The time at which the batch segment job last updated.

Returns:

  • (AWS.Request)

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

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

Describes the given campaign, including its status.

A campaign can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING > DELETE IN_PROGRESS

When the status is CREATE FAILED, the response includes the failureReason key, which describes why.

For more information on campaigns, see CreateCampaign.

Service Reference:

Examples:

Calling the describeCampaign operation

var params = {
  campaignArn: 'STRING_VALUE' /* required */
};
personalize.describeCampaign(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: {})
    • campaignArn — (String)

      The Amazon Resource Name (ARN) of the campaign.

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:

      • campaign — (map)

        The properties of the campaign.

        • name — (String)

          The name of the campaign.

        • campaignArn — (String)

          The Amazon Resource Name (ARN) of the campaign.

        • solutionVersionArn — (String)

          The Amazon Resource Name (ARN) of a specific version of the solution.

        • minProvisionedTPS — (Integer)

          Specifies the requested minimum provisioned transactions (recommendations) per second. A high minProvisionedTPS will increase your bill. We recommend starting with 1 for minProvisionedTPS (the default). Track your usage using Amazon CloudWatch metrics, and increase the minProvisionedTPS as necessary.

        • campaignConfig — (map)

          The configuration details of a campaign.

          • itemExplorationConfig — (map<String>)

            Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your solution uses the User-Personalization recipe.

          • enableMetadataWithRecommendations — (Boolean)

            Whether metadata with recommendations is enabled for the campaign. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a campaign, see Enabling metadata in recommendations for a campaign.

            If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

        • status — (String)

          The status of the campaign.

          A campaign can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • failureReason — (String)

          If a campaign fails, the reason behind the failure.

        • creationDateTime — (Date)

          The date and time (in Unix format) that the campaign was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix format) that the campaign was last updated.

        • latestCampaignUpdate — (map)

          Provides a summary of the properties of a campaign update. For a complete listing, call the DescribeCampaign API.

          • solutionVersionArn — (String)

            The Amazon Resource Name (ARN) of the deployed solution version.

          • minProvisionedTPS — (Integer)

            Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support.

          • campaignConfig — (map)

            The configuration details of a campaign.

            • itemExplorationConfig — (map<String>)

              Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your solution uses the User-Personalization recipe.

            • enableMetadataWithRecommendations — (Boolean)

              Whether metadata with recommendations is enabled for the campaign. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a campaign, see Enabling metadata in recommendations for a campaign.

              If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

          • status — (String)

            The status of the campaign update.

            A campaign update can be in one of the following states:

            • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

            • DELETE PENDING > DELETE IN_PROGRESS

          • failureReason — (String)

            If a campaign update fails, the reason behind the failure.

          • creationDateTime — (Date)

            The date and time (in Unix time) that the campaign update was created.

          • lastUpdatedDateTime — (Date)

            The date and time (in Unix time) that the campaign update was last updated.

Returns:

  • (AWS.Request)

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

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

Describes the given dataset. For more information on datasets, see CreateDataset.

Service Reference:

Examples:

Calling the describeDataset operation

var params = {
  datasetArn: 'STRING_VALUE' /* required */
};
personalize.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: {})
    • datasetArn — (String)

      The Amazon Resource Name (ARN) of the dataset 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:

      • dataset — (map)

        A listing of the dataset's properties.

        • name — (String)

          The name of the dataset.

        • datasetArn — (String)

          The Amazon Resource Name (ARN) of the dataset that you want metadata for.

        • datasetGroupArn — (String)

          The Amazon Resource Name (ARN) of the dataset group.

        • datasetType — (String)

          One of the following values:

          • Interactions

          • Items

          • Users

          • Actions

          • Action_Interactions

        • schemaArn — (String)

          The ARN of the associated schema.

        • status — (String)

          The status of the dataset.

          A dataset can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime — (Date)

          The creation date and time (in Unix time) of the dataset.

        • lastUpdatedDateTime — (Date)

          A time stamp that shows when the dataset was updated.

        • latestDatasetUpdate — (map)

          Describes the latest update to the dataset.

          • schemaArn — (String)

            The Amazon Resource Name (ARN) of the schema that replaced the previous schema of the dataset.

          • status — (String)

            The status of the dataset update.

          • failureReason — (String)

            If updating a dataset fails, provides the reason why.

          • creationDateTime — (Date)

            The creation date and time (in Unix time) of the dataset update.

          • lastUpdatedDateTime — (Date)

            The last update date and time (in Unix time) of the dataset.

        • trackingId — (String)

          The ID of the event tracker for an Action interactions dataset. You specify the tracker's ID in the PutActionInteractions API operation. Amazon Personalize uses it to direct new data to the Action interactions dataset in your dataset group.

Returns:

  • (AWS.Request)

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

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

Describes the dataset export job created by CreateDatasetExportJob, including the export job status.

Service Reference:

Examples:

Calling the describeDatasetExportJob operation

var params = {
  datasetExportJobArn: 'STRING_VALUE' /* required */
};
personalize.describeDatasetExportJob(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: {})
    • datasetExportJobArn — (String)

      The Amazon Resource Name (ARN) of the dataset export job 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:

      • datasetExportJob — (map)

        Information about the dataset export job, including the status.

        The status is one of the following values:

        • CREATE PENDING

        • CREATE IN_PROGRESS

        • ACTIVE

        • CREATE FAILED

        • jobName — (String)

          The name of the export job.

        • datasetExportJobArn — (String)

          The Amazon Resource Name (ARN) of the dataset export job.

        • datasetArn — (String)

          The Amazon Resource Name (ARN) of the dataset to export.

        • ingestionMode — (String)

          The data to export, based on how you imported the data. You can choose to export BULK data that you imported using a dataset import job, PUT data that you imported incrementally (using the console, PutEvents, PutUsers and PutItems operations), or ALL for both types. The default value is PUT.

          Possible values include:
          • "BULK"
          • "PUT"
          • "ALL"
        • roleArn — (String)

          The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket.

        • status — (String)

          The status of the dataset export job.

          A dataset export job can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

        • jobOutput — (map)

          The path to the Amazon S3 bucket where the job's output is stored. For example:

          s3://bucket-name/folder-name/

          • s3DataDestinationrequired — (map)

            The configuration details of an Amazon S3 input or output bucket.

            • pathrequired — (String)

              The file path of the Amazon S3 bucket.

            • kmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

        • creationDateTime — (Date)

          The creation date and time (in Unix time) of the dataset export job.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) the status of the dataset export job was last updated.

        • failureReason — (String)

          If a dataset export job fails, provides the reason why.

Returns:

  • (AWS.Request)

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

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

Describes the given dataset group. For more information on dataset groups, see CreateDatasetGroup.

Service Reference:

Examples:

Calling the describeDatasetGroup operation

var params = {
  datasetGroupArn: 'STRING_VALUE' /* required */
};
personalize.describeDatasetGroup(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: {})
    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the dataset group 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:

      • datasetGroup — (map)

        A listing of the dataset group's properties.

        • name — (String)

          The name of the dataset group.

        • datasetGroupArn — (String)

          The Amazon Resource Name (ARN) of the dataset group.

        • status — (String)

          The current status of the dataset group.

          A dataset group can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING

        • roleArn — (String)

          The ARN of the Identity and Access Management (IAM) role that has permissions to access the Key Management Service (KMS) key. Supplying an IAM role is only valid when also specifying a KMS key.

        • kmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the Key Management Service (KMS) key used to encrypt the datasets.

        • creationDateTime — (Date)

          The creation date and time (in Unix time) of the dataset group.

        • lastUpdatedDateTime — (Date)

          The last update date and time (in Unix time) of the dataset group.

        • failureReason — (String)

          If creating a dataset group fails, provides the reason why.

        • domain — (String)

          The domain of a Domain dataset group.

          Possible values include:
          • "ECOMMERCE"
          • "VIDEO_ON_DEMAND"

Returns:

  • (AWS.Request)

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

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

Describes the dataset import job created by CreateDatasetImportJob, including the import job status.

Service Reference:

Examples:

Calling the describeDatasetImportJob operation

var params = {
  datasetImportJobArn: 'STRING_VALUE' /* required */
};
personalize.describeDatasetImportJob(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: {})
    • datasetImportJobArn — (String)

      The Amazon Resource Name (ARN) of the dataset import job 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:

      • datasetImportJob — (map)

        Information about the dataset import job, including the status.

        The status is one of the following values:

        • CREATE PENDING

        • CREATE IN_PROGRESS

        • ACTIVE

        • CREATE FAILED

        • jobName — (String)

          The name of the import job.

        • datasetImportJobArn — (String)

          The ARN of the dataset import job.

        • datasetArn — (String)

          The Amazon Resource Name (ARN) of the dataset that receives the imported data.

        • dataSource — (map)

          The Amazon S3 bucket that contains the training data to import.

          • dataLocation — (String)

            The path to the Amazon S3 bucket where the data that you want to upload to your dataset is stored. For example:

            s3://bucket-name/folder-name/

        • roleArn — (String)

          The ARN of the IAM role that has permissions to read from the Amazon S3 data source.

        • status — (String)

          The status of the dataset import job.

          A dataset import job can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

        • creationDateTime — (Date)

          The creation date and time (in Unix time) of the dataset import job.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) the dataset was last updated.

        • failureReason — (String)

          If a dataset import job fails, provides the reason why.

        • importMode — (String)

          The import mode used by the dataset import job to import new records.

          Possible values include:
          • "FULL"
          • "INCREMENTAL"
        • publishAttributionMetricsToS3 — (Boolean)

          Whether the job publishes metrics to Amazon S3 for a metric attribution.

Returns:

  • (AWS.Request)

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

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

Describes an event tracker. The response includes the trackingId and status of the event tracker. For more information on event trackers, see CreateEventTracker.

Service Reference:

Examples:

Calling the describeEventTracker operation

var params = {
  eventTrackerArn: 'STRING_VALUE' /* required */
};
personalize.describeEventTracker(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: {})
    • eventTrackerArn — (String)

      The Amazon Resource Name (ARN) of the event tracker 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:

      • eventTracker — (map)

        An object that describes the event tracker.

        • name — (String)

          The name of the event tracker.

        • eventTrackerArn — (String)

          The ARN of the event tracker.

        • accountId — (String)

          The Amazon Web Services account that owns the event tracker.

        • trackingId — (String)

          The ID of the event tracker. Include this ID in requests to the PutEvents API.

        • datasetGroupArn — (String)

          The Amazon Resource Name (ARN) of the dataset group that receives the event data.

        • status — (String)

          The status of the event tracker.

          An event tracker can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime — (Date)

          The date and time (in Unix format) that the event tracker was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the event tracker was last updated.

Returns:

  • (AWS.Request)

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

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

Describes the given feature transformation.

Service Reference:

Examples:

Calling the describeFeatureTransformation operation

var params = {
  featureTransformationArn: 'STRING_VALUE' /* required */
};
personalize.describeFeatureTransformation(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: {})
    • featureTransformationArn — (String)

      The Amazon Resource Name (ARN) of the feature transformation 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:

      • featureTransformation — (map)

        A listing of the FeatureTransformation properties.

        • name — (String)

          The name of the feature transformation.

        • featureTransformationArn — (String)

          The Amazon Resource Name (ARN) of the FeatureTransformation object.

        • defaultParameters — (map<String>)

          Provides the default parameters for feature transformation.

        • creationDateTime — (Date)

          The creation date and time (in Unix time) of the feature transformation.

        • lastUpdatedDateTime — (Date)

          The last update date and time (in Unix time) of the feature transformation.

        • status — (String)

          The status of the feature transformation.

          A feature transformation can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

Returns:

  • (AWS.Request)

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

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

Describes a filter's properties.

Service Reference:

Examples:

Calling the describeFilter operation

var params = {
  filterArn: 'STRING_VALUE' /* required */
};
personalize.describeFilter(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: {})
    • filterArn — (String)

      The ARN of the filter 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:

      • filter — (map)

        The filter's details.

        • name — (String)

          The name of the filter.

        • filterArn — (String)

          The ARN of the filter.

        • creationDateTime — (Date)

          The time at which the filter was created.

        • lastUpdatedDateTime — (Date)

          The time at which the filter was last updated.

        • datasetGroupArn — (String)

          The ARN of the dataset group to which the filter belongs.

        • failureReason — (String)

          If the filter failed, the reason for its failure.

        • filterExpression — (String)

          Specifies the type of item interactions to filter out of recommendation results. The filter expression must follow specific format rules. For information about filter expression structure and syntax, see Filter expressions.

        • status — (String)

          The status of the filter.

Returns:

  • (AWS.Request)

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

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

Describes a metric attribution.

Service Reference:

Examples:

Calling the describeMetricAttribution operation

var params = {
  metricAttributionArn: 'STRING_VALUE' /* required */
};
personalize.describeMetricAttribution(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: {})
    • metricAttributionArn — (String)

      The metric attribution's Amazon Resource Name (ARN).

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:

      • metricAttribution — (map)

        The details of the metric attribution.

        • name — (String)

          The metric attribution's name.

        • metricAttributionArn — (String)

          The metric attribution's Amazon Resource Name (ARN).

        • datasetGroupArn — (String)

          The metric attribution's dataset group Amazon Resource Name (ARN).

        • metricsOutputConfig — (map)

          The metric attribution's output configuration.

          • s3DataDestination — (map)

            The configuration details of an Amazon S3 input or output bucket.

            • pathrequired — (String)

              The file path of the Amazon S3 bucket.

            • kmsKeyArn — (String)

              The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

          • roleArnrequired — (String)

            The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket and add metrics to Amazon CloudWatch. For more information, see Measuring impact of recommendations.

        • status — (String)

          The metric attribution's status.

        • creationDateTime — (Date)

          The metric attribution's creation date time.

        • lastUpdatedDateTime — (Date)

          The metric attribution's last updated date time.

        • failureReason — (String)

          The metric attribution's failure reason.

Returns:

  • (AWS.Request)

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

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

Describes a recipe.

A recipe contains three items:

  • An algorithm that trains a model.

  • Hyperparameters that govern the training.

  • Feature transformation information for modifying the input data before training.

Amazon Personalize provides a set of predefined recipes. You specify a recipe when you create a solution with the CreateSolution API. CreateSolution trains a model by using the algorithm in the specified recipe and a training dataset. The solution, when deployed as a campaign, can provide recommendations using the GetRecommendations API.

Service Reference:

Examples:

Calling the describeRecipe operation

var params = {
  recipeArn: 'STRING_VALUE' /* required */
};
personalize.describeRecipe(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: {})
    • recipeArn — (String)

      The Amazon Resource Name (ARN) of the recipe 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:

      • recipe — (map)

        An object that describes the recipe.

        • name — (String)

          The name of the recipe.

        • recipeArn — (String)

          The Amazon Resource Name (ARN) of the recipe.

        • algorithmArn — (String)

          The Amazon Resource Name (ARN) of the algorithm that Amazon Personalize uses to train the model.

        • featureTransformationArn — (String)

          The ARN of the FeatureTransformation object.

        • status — (String)

          The status of the recipe.

        • description — (String)

          The description of the recipe.

        • creationDateTime — (Date)

          The date and time (in Unix format) that the recipe was created.

        • recipeType — (String)

          One of the following values:

          • PERSONALIZED_RANKING

          • RELATED_ITEMS

          • USER_PERSONALIZATION

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix format) that the recipe was last updated.

Returns:

  • (AWS.Request)

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

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

Describes the given recommender, including its status.

A recommender can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

  • STOP PENDING > STOP IN_PROGRESS > INACTIVE > START PENDING > START IN_PROGRESS > ACTIVE

  • DELETE PENDING > DELETE IN_PROGRESS

When the status is CREATE FAILED, the response includes the failureReason key, which describes why.

The modelMetrics key is null when the recommender is being created or deleted.

For more information on recommenders, see CreateRecommender.

Service Reference:

Examples:

Calling the describeRecommender operation

var params = {
  recommenderArn: 'STRING_VALUE' /* required */
};
personalize.describeRecommender(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: {})
    • recommenderArn — (String)

      The Amazon Resource Name (ARN) of the recommender 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:

      • recommender — (map)

        The properties of the recommender.

        • recommenderArn — (String)

          The Amazon Resource Name (ARN) of the recommender.

        • datasetGroupArn — (String)

          The Amazon Resource Name (ARN) of the Domain dataset group that contains the recommender.

        • name — (String)

          The name of the recommender.

        • recipeArn — (String)

          The Amazon Resource Name (ARN) of the recipe (Domain dataset group use case) that the recommender was created for.

        • recommenderConfig — (map)

          The configuration details of the recommender.

          • itemExplorationConfig — (map<String>)

            Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your recommenders generate personalized recommendations for a user (not popular items or similar items).

          • minRecommendationRequestsPerSecond — (Integer)

            Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support. A high minRecommendationRequestsPerSecond will increase your bill. We recommend starting with 1 for minRecommendationRequestsPerSecond (the default). Track your usage using Amazon CloudWatch metrics, and increase the minRecommendationRequestsPerSecond as necessary.

          • trainingDataConfig — (map)

            Specifies the training data configuration to use when creating a domain recommender.

            • excludedDatasetColumns — (map<Array<String>>)

              Specifies the columns to exclude from training. Each key is a dataset type, and each value is a list of columns. Exclude columns to control what data Amazon Personalize uses to generate recommendations. For example, you might have a column that you want to use only to filter recommendations. You can exclude this column from training and Amazon Personalize considers it only when filtering.

          • enableMetadataWithRecommendations — (Boolean)

            Whether metadata with recommendations is enabled for the recommender. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a recommender, see Enabling metadata in recommendations for a recommender.

            If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

        • creationDateTime — (Date)

          The date and time (in Unix format) that the recommender was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix format) that the recommender was last updated.

        • status — (String)

          The status of the recommender.

          A recommender can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • STOP PENDING > STOP IN_PROGRESS > INACTIVE > START PENDING > START IN_PROGRESS > ACTIVE

          • DELETE PENDING > DELETE IN_PROGRESS

        • failureReason — (String)

          If a recommender fails, the reason behind the failure.

        • latestRecommenderUpdate — (map)

          Provides a summary of the latest updates to the recommender.

          • recommenderConfig — (map)

            The configuration details of the recommender update.

            • itemExplorationConfig — (map<String>)

              Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your recommenders generate personalized recommendations for a user (not popular items or similar items).

            • minRecommendationRequestsPerSecond — (Integer)

              Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support. A high minRecommendationRequestsPerSecond will increase your bill. We recommend starting with 1 for minRecommendationRequestsPerSecond (the default). Track your usage using Amazon CloudWatch metrics, and increase the minRecommendationRequestsPerSecond as necessary.

            • trainingDataConfig — (map)

              Specifies the training data configuration to use when creating a domain recommender.

              • excludedDatasetColumns — (map<Array<String>>)

                Specifies the columns to exclude from training. Each key is a dataset type, and each value is a list of columns. Exclude columns to control what data Amazon Personalize uses to generate recommendations. For example, you might have a column that you want to use only to filter recommendations. You can exclude this column from training and Amazon Personalize considers it only when filtering.

            • enableMetadataWithRecommendations — (Boolean)

              Whether metadata with recommendations is enabled for the recommender. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a recommender, see Enabling metadata in recommendations for a recommender.

              If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

          • creationDateTime — (Date)

            The date and time (in Unix format) that the recommender update was created.

          • lastUpdatedDateTime — (Date)

            The date and time (in Unix time) that the recommender update was last updated.

          • status — (String)

            The status of the recommender update.

            A recommender can be in one of the following states:

            • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

            • STOP PENDING > STOP IN_PROGRESS > INACTIVE > START PENDING > START IN_PROGRESS > ACTIVE

            • DELETE PENDING > DELETE IN_PROGRESS

          • failureReason — (String)

            If a recommender update fails, the reason behind the failure.

        • modelMetrics — (map<Float>)

          Provides evaluation metrics that help you determine the performance of a recommender. For more information, see Evaluating a recommender.

Returns:

  • (AWS.Request)

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

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

Describes a schema. For more information on schemas, see CreateSchema.

Service Reference:

Examples:

Calling the describeSchema operation

var params = {
  schemaArn: 'STRING_VALUE' /* required */
};
personalize.describeSchema(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: {})
    • schemaArn — (String)

      The Amazon Resource Name (ARN) of the schema to retrieve.

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:

      • schema — (map)

        The requested schema.

        • name — (String)

          The name of the schema.

        • schemaArn — (String)

          The Amazon Resource Name (ARN) of the schema.

        • schema — (String)

          The schema.

        • creationDateTime — (Date)

          The date and time (in Unix time) that the schema was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the schema was last updated.

        • domain — (String)

          The domain of a schema that you created for a dataset in a Domain dataset group.

          Possible values include:
          • "ECOMMERCE"
          • "VIDEO_ON_DEMAND"

Returns:

  • (AWS.Request)

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

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

Describes a solution. For more information on solutions, see CreateSolution.

Service Reference:

Examples:

Calling the describeSolution operation

var params = {
  solutionArn: 'STRING_VALUE' /* required */
};
personalize.describeSolution(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: {})
    • solutionArn — (String)

      The Amazon Resource Name (ARN) of the solution 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:

      • solution — (map)

        An object that describes the solution.

        • name — (String)

          The name of the solution.

        • solutionArn — (String)

          The ARN of the solution.

        • performHPO — (Boolean)

          Whether to perform hyperparameter optimization (HPO) on the chosen recipe. The default is false.

        • performAutoML — (Boolean)

          We don't recommend enabling automated machine learning. Instead, match your use case to the available Amazon Personalize recipes. For more information, see Determining your use case.

          When true, Amazon Personalize performs a search for the best USER_PERSONALIZATION recipe from the list specified in the solution configuration (recipeArn must not be specified). When false (the default), Amazon Personalize uses recipeArn for training.

        • recipeArn — (String)

          The ARN of the recipe used to create the solution. This is required when performAutoML is false.

        • datasetGroupArn — (String)

          The Amazon Resource Name (ARN) of the dataset group that provides the training data.

        • eventType — (String)

          The event type (for example, 'click' or 'like') that is used for training the model. If no eventType is provided, Amazon Personalize uses all interactions for training with equal weight regardless of type.

        • solutionConfig — (map)

          Describes the configuration properties for the solution.

          • eventValueThreshold — (String)

            Only events with a value greater than or equal to this threshold are used for training a model.

          • hpoConfig — (map)

            Describes the properties for hyperparameter optimization (HPO).

            • hpoObjective — (map)

              The metric to optimize during HPO.

              Note: Amazon Personalize doesn't support configuring the hpoObjective at this time.
              • type — (String)

                The type of the metric. Valid values are Maximize and Minimize.

              • metricName — (String)

                The name of the metric.

              • metricRegex — (String)

                A regular expression for finding the metric in the training job logs.

            • hpoResourceConfig — (map)

              Describes the resource configuration for HPO.

              • maxNumberOfTrainingJobs — (String)

                The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.

              • maxParallelTrainingJobs — (String)

                The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.

            • algorithmHyperParameterRanges — (map)

              The hyperparameters and their allowable ranges.

              • integerHyperParameterRanges — (Array<map>)

                The integer-valued hyperparameters and their ranges.

                • name — (String)

                  The name of the hyperparameter.

                • minValue — (Integer)

                  The minimum allowable value for the hyperparameter.

                • maxValue — (Integer)

                  The maximum allowable value for the hyperparameter.

              • continuousHyperParameterRanges — (Array<map>)

                The continuous hyperparameters and their ranges.

                • name — (String)

                  The name of the hyperparameter.

                • minValue — (Float)

                  The minimum allowable value for the hyperparameter.

                • maxValue — (Float)

                  The maximum allowable value for the hyperparameter.

              • categoricalHyperParameterRanges — (Array<map>)

                The categorical hyperparameters and their ranges.

                • name — (String)

                  The name of the hyperparameter.

                • values — (Array<String>)

                  A list of the categories for the hyperparameter.

          • algorithmHyperParameters — (map<String>)

            Lists the algorithm hyperparameters and their values.

          • featureTransformationParameters — (map<String>)

            Lists the feature transformation parameters.

          • autoMLConfig — (map)

            The AutoMLConfig object containing a list of recipes to search when AutoML is performed.

            • metricName — (String)

              The metric to optimize.

            • recipeList — (Array<String>)

              The list of candidate recipes.

          • optimizationObjective — (map)

            Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see Optimizing a solution.

            • itemAttribute — (String)

              The numerical metadata column in an Items dataset related to the optimization objective. For example, VIDEO_LENGTH (to maximize streaming minutes), or PRICE (to maximize revenue).

            • objectiveSensitivity — (String)

              Specifies how Amazon Personalize balances the importance of your optimization objective versus relevance.

              Possible values include:
              • "LOW"
              • "MEDIUM"
              • "HIGH"
              • "OFF"
          • trainingDataConfig — (map)

            Specifies the training data configuration to use when creating a custom solution version (trained model).

            • excludedDatasetColumns — (map<Array<String>>)

              Specifies the columns to exclude from training. Each key is a dataset type, and each value is a list of columns. Exclude columns to control what data Amazon Personalize uses to generate recommendations. For example, you might have a column that you want to use only to filter recommendations. You can exclude this column from training and Amazon Personalize considers it only when filtering.

        • autoMLResult — (map)

          When performAutoML is true, specifies the best recipe found.

          • bestRecipeArn — (String)

            The Amazon Resource Name (ARN) of the best recipe.

        • status — (String)

          The status of the solution.

          A solution can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime — (Date)

          The creation date and time (in Unix time) of the solution.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the solution was last updated.

        • latestSolutionVersion — (map)

          Describes the latest version of the solution, including the status and the ARN.

          • solutionVersionArn — (String)

            The Amazon Resource Name (ARN) of the solution version.

          • status — (String)

            The status of the solution version.

            A solution version can be in one of the following states:

            • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • creationDateTime — (Date)

            The date and time (in Unix time) that this version of a solution was created.

          • lastUpdatedDateTime — (Date)

            The date and time (in Unix time) that the solution version was last updated.

          • failureReason — (String)

            If a solution version fails, the reason behind the failure.

Returns:

  • (AWS.Request)

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

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

Describes a specific version of a solution. For more information on solutions, see CreateSolution

Service Reference:

Examples:

Calling the describeSolutionVersion operation

var params = {
  solutionVersionArn: 'STRING_VALUE' /* required */
};
personalize.describeSolutionVersion(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: {})
    • solutionVersionArn — (String)

      The Amazon Resource Name (ARN) of the solution version.

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:

      • solutionVersion — (map)

        The solution version.

        • name — (String)

          The name of the solution version.

        • solutionVersionArn — (String)

          The ARN of the solution version.

        • solutionArn — (String)

          The ARN of the solution.

        • performHPO — (Boolean)

          Whether to perform hyperparameter optimization (HPO) on the chosen recipe. The default is false.

        • performAutoML — (Boolean)

          When true, Amazon Personalize searches for the most optimal recipe according to the solution configuration. When false (the default), Amazon Personalize uses recipeArn.

        • recipeArn — (String)

          The ARN of the recipe used in the solution.

        • eventType — (String)

          The event type (for example, 'click' or 'like') that is used for training the model.

        • datasetGroupArn — (String)

          The Amazon Resource Name (ARN) of the dataset group providing the training data.

        • solutionConfig — (map)

          Describes the configuration properties for the solution.

          • eventValueThreshold — (String)

            Only events with a value greater than or equal to this threshold are used for training a model.

          • hpoConfig — (map)

            Describes the properties for hyperparameter optimization (HPO).

            • hpoObjective — (map)

              The metric to optimize during HPO.

              Note: Amazon Personalize doesn't support configuring the hpoObjective at this time.
              • type — (String)

                The type of the metric. Valid values are Maximize and Minimize.

              • metricName — (String)

                The name of the metric.

              • metricRegex — (String)

                A regular expression for finding the metric in the training job logs.

            • hpoResourceConfig — (map)

              Describes the resource configuration for HPO.

              • maxNumberOfTrainingJobs — (String)

                The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.

              • maxParallelTrainingJobs — (String)

                The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.

            • algorithmHyperParameterRanges — (map)

              The hyperparameters and their allowable ranges.

              • integerHyperParameterRanges — (Array<map>)

                The integer-valued hyperparameters and their ranges.

                • name — (String)

                  The name of the hyperparameter.

                • minValue — (Integer)

                  The minimum allowable value for the hyperparameter.

                • maxValue — (Integer)

                  The maximum allowable value for the hyperparameter.

              • continuousHyperParameterRanges — (Array<map>)

                The continuous hyperparameters and their ranges.

                • name — (String)

                  The name of the hyperparameter.

                • minValue — (Float)

                  The minimum allowable value for the hyperparameter.

                • maxValue — (Float)

                  The maximum allowable value for the hyperparameter.

              • categoricalHyperParameterRanges — (Array<map>)

                The categorical hyperparameters and their ranges.

                • name — (String)

                  The name of the hyperparameter.

                • values — (Array<String>)

                  A list of the categories for the hyperparameter.

          • algorithmHyperParameters — (map<String>)

            Lists the algorithm hyperparameters and their values.

          • featureTransformationParameters — (map<String>)

            Lists the feature transformation parameters.

          • autoMLConfig — (map)

            The AutoMLConfig object containing a list of recipes to search when AutoML is performed.

            • metricName — (String)

              The metric to optimize.

            • recipeList — (Array<String>)

              The list of candidate recipes.

          • optimizationObjective — (map)

            Describes the additional objective for the solution, such as maximizing streaming minutes or increasing revenue. For more information see Optimizing a solution.

            • itemAttribute — (String)

              The numerical metadata column in an Items dataset related to the optimization objective. For example, VIDEO_LENGTH (to maximize streaming minutes), or PRICE (to maximize revenue).

            • objectiveSensitivity — (String)

              Specifies how Amazon Personalize balances the importance of your optimization objective versus relevance.

              Possible values include:
              • "LOW"
              • "MEDIUM"
              • "HIGH"
              • "OFF"
          • trainingDataConfig — (map)

            Specifies the training data configuration to use when creating a custom solution version (trained model).

            • excludedDatasetColumns — (map<Array<String>>)

              Specifies the columns to exclude from training. Each key is a dataset type, and each value is a list of columns. Exclude columns to control what data Amazon Personalize uses to generate recommendations. For example, you might have a column that you want to use only to filter recommendations. You can exclude this column from training and Amazon Personalize considers it only when filtering.

        • trainingHours — (Float)

          The time used to train the model. You are billed for the time it takes to train a model. This field is visible only after Amazon Personalize successfully trains a model.

        • trainingMode — (String)

          The scope of training to be performed when creating the solution version. The FULL option trains the solution version based on the entirety of the input solution's training data, while the UPDATE option processes only the data that has changed in comparison to the input solution. Choose UPDATE when you want to incrementally update your solution version instead of creating an entirely new one.

          The UPDATE option can only be used when you already have an active solution version created from the input solution using the FULL option and the input solution was trained with the User-Personalization recipe or the HRNN-Coldstart recipe.

          Possible values include:
          • "FULL"
          • "UPDATE"
        • tunedHPOParams — (map)

          If hyperparameter optimization was performed, contains the hyperparameter values of the best performing model.

          • algorithmHyperParameters — (map<String>)

            A list of the hyperparameter values of the best performing model.

        • status — (String)

          The status of the solution version.

          A solution version can be in one of the following states:

          • CREATE PENDING

          • CREATE IN_PROGRESS

          • ACTIVE

          • CREATE FAILED

          • CREATE STOPPING

          • CREATE STOPPED

        • failureReason — (String)

          If training a solution version fails, the reason for the failure.

        • creationDateTime — (Date)

          The date and time (in Unix time) that this version of the solution was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the solution was last updated.

Returns:

  • (AWS.Request)

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

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

Gets the metrics for the specified solution version.

Service Reference:

Examples:

Calling the getSolutionMetrics operation

var params = {
  solutionVersionArn: 'STRING_VALUE' /* required */
};
personalize.getSolutionMetrics(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: {})
    • solutionVersionArn — (String)

      The Amazon Resource Name (ARN) of the solution version for which to get metrics.

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:

      • solutionVersionArn — (String)

        The same solution version ARN as specified in the request.

      • metrics — (map<Float>)

        The metrics for the solution version. For more information, see Evaluating a solution version with metrics .

Returns:

  • (AWS.Request)

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

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

Gets a list of the batch inference jobs that have been performed off of a solution version.

Service Reference:

Examples:

Calling the listBatchInferenceJobs operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE',
  solutionVersionArn: 'STRING_VALUE'
};
personalize.listBatchInferenceJobs(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: {})
    • solutionVersionArn — (String)

      The Amazon Resource Name (ARN) of the solution version from which the batch inference jobs were created.

    • nextToken — (String)

      The token to request the next page of results.

    • maxResults — (Integer)

      The maximum number of batch inference job results to return in each page. 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:

      • batchInferenceJobs — (Array<map>)

        A list containing information on each job that is returned.

        • batchInferenceJobArn — (String)

          The Amazon Resource Name (ARN) of the batch inference job.

        • jobName — (String)

          The name of the batch inference job.

        • status — (String)

          The status of the batch inference job. The status is one of the following values:

          • PENDING

          • IN PROGRESS

          • ACTIVE

          • CREATE FAILED

        • creationDateTime — (Date)

          The time at which the batch inference job was created.

        • lastUpdatedDateTime — (Date)

          The time at which the batch inference job was last updated.

        • failureReason — (String)

          If the batch inference job failed, the reason for the failure.

        • solutionVersionArn — (String)

          The ARN of the solution version used by the batch inference job.

        • batchInferenceJobMode — (String)

          The job's mode.

          Possible values include:
          • "BATCH_INFERENCE"
          • "THEME_GENERATION"
      • nextToken — (String)

        The token to use to retrieve the next page of results. The value is null when there are no more results to return.

Returns:

  • (AWS.Request)

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

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

Gets a list of the batch segment jobs that have been performed off of a solution version that you specify.

Service Reference:

Examples:

Calling the listBatchSegmentJobs operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE',
  solutionVersionArn: 'STRING_VALUE'
};
personalize.listBatchSegmentJobs(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: {})
    • solutionVersionArn — (String)

      The Amazon Resource Name (ARN) of the solution version that the batch segment jobs used to generate batch segments.

    • nextToken — (String)

      The token to request the next page of results.

    • maxResults — (Integer)

      The maximum number of batch segment job results to return in each page. 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:

      • batchSegmentJobs — (Array<map>)

        A list containing information on each job that is returned.

        • batchSegmentJobArn — (String)

          The Amazon Resource Name (ARN) of the batch segment job.

        • jobName — (String)

          The name of the batch segment job.

        • status — (String)

          The status of the batch segment job. The status is one of the following values:

          • PENDING

          • IN PROGRESS

          • ACTIVE

          • CREATE FAILED

        • creationDateTime — (Date)

          The time at which the batch segment job was created.

        • lastUpdatedDateTime — (Date)

          The time at which the batch segment job was last updated.

        • failureReason — (String)

          If the batch segment job failed, the reason for the failure.

        • solutionVersionArn — (String)

          The Amazon Resource Name (ARN) of the solution version used by the batch segment job to generate batch segments.

      • nextToken — (String)

        The token to use to retrieve the next page of results. The value is null when there are no more results to return.

Returns:

  • (AWS.Request)

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

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

Returns a list of campaigns that use the given solution. When a solution is not specified, all the campaigns associated with the account are listed. The response provides the properties for each campaign, including the Amazon Resource Name (ARN). For more information on campaigns, see CreateCampaign.

Service Reference:

Examples:

Calling the listCampaigns operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE',
  solutionArn: 'STRING_VALUE'
};
personalize.listCampaigns(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: {})
    • solutionArn — (String)

      The Amazon Resource Name (ARN) of the solution to list the campaigns for. When a solution is not specified, all the campaigns associated with the account are listed.

    • nextToken — (String)

      A token returned from the previous call to ListCampaigns for getting the next set of campaigns (if they exist).

    • maxResults — (Integer)

      The maximum number of campaigns to return.

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:

      • campaigns — (Array<map>)

        A list of the campaigns.

        • name — (String)

          The name of the campaign.

        • campaignArn — (String)

          The Amazon Resource Name (ARN) of the campaign.

        • status — (String)

          The status of the campaign.

          A campaign can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime — (Date)

          The date and time (in Unix time) that the campaign was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the campaign was last updated.

        • failureReason — (String)

          If a campaign fails, the reason behind the failure.

      • nextToken — (String)

        A token for getting the next set of campaigns (if they exist).

Returns:

  • (AWS.Request)

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

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

Returns a list of dataset export jobs that use the given dataset. When a dataset is not specified, all the dataset export jobs associated with the account are listed. The response provides the properties for each dataset export job, including the Amazon Resource Name (ARN). For more information on dataset export jobs, see CreateDatasetExportJob. For more information on datasets, see CreateDataset.

Service Reference:

Examples:

Calling the listDatasetExportJobs operation

var params = {
  datasetArn: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listDatasetExportJobs(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: {})
    • datasetArn — (String)

      The Amazon Resource Name (ARN) of the dataset to list the dataset export jobs for.

    • nextToken — (String)

      A token returned from the previous call to ListDatasetExportJobs for getting the next set of dataset export jobs (if they exist).

    • maxResults — (Integer)

      The maximum number of dataset export jobs to return.

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:

      • datasetExportJobs — (Array<map>)

        The list of dataset export jobs.

        • datasetExportJobArn — (String)

          The Amazon Resource Name (ARN) of the dataset export job.

        • jobName — (String)

          The name of the dataset export job.

        • status — (String)

          The status of the dataset export job.

          A dataset export job can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

        • creationDateTime — (Date)

          The date and time (in Unix time) that the dataset export job was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the dataset export job status was last updated.

        • failureReason — (String)

          If a dataset export job fails, the reason behind the failure.

      • nextToken — (String)

        A token for getting the next set of dataset export jobs (if they exist).

Returns:

  • (AWS.Request)

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

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

Returns a list of dataset groups. The response provides the properties for each dataset group, including the Amazon Resource Name (ARN). For more information on dataset groups, see CreateDatasetGroup.

Service Reference:

Examples:

Calling the listDatasetGroups operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listDatasetGroups(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)

      A token returned from the previous call to ListDatasetGroups for getting the next set of dataset groups (if they exist).

    • maxResults — (Integer)

      The maximum number of dataset groups to return.

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:

      • datasetGroups — (Array<map>)

        The list of your dataset groups.

        • name — (String)

          The name of the dataset group.

        • datasetGroupArn — (String)

          The Amazon Resource Name (ARN) of the dataset group.

        • status — (String)

          The status of the dataset group.

          A dataset group can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING

        • creationDateTime — (Date)

          The date and time (in Unix time) that the dataset group was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the dataset group was last updated.

        • failureReason — (String)

          If creating a dataset group fails, the reason behind the failure.

        • domain — (String)

          The domain of a Domain dataset group.

          Possible values include:
          • "ECOMMERCE"
          • "VIDEO_ON_DEMAND"
      • nextToken — (String)

        A token for getting the next set of dataset groups (if they exist).

Returns:

  • (AWS.Request)

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

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

Returns a list of dataset import jobs that use the given dataset. When a dataset is not specified, all the dataset import jobs associated with the account are listed. The response provides the properties for each dataset import job, including the Amazon Resource Name (ARN). For more information on dataset import jobs, see CreateDatasetImportJob. For more information on datasets, see CreateDataset.

Service Reference:

Examples:

Calling the listDatasetImportJobs operation

var params = {
  datasetArn: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listDatasetImportJobs(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: {})
    • datasetArn — (String)

      The Amazon Resource Name (ARN) of the dataset to list the dataset import jobs for.

    • nextToken — (String)

      A token returned from the previous call to ListDatasetImportJobs for getting the next set of dataset import jobs (if they exist).

    • maxResults — (Integer)

      The maximum number of dataset import jobs to return.

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:

      • datasetImportJobs — (Array<map>)

        The list of dataset import jobs.

        • datasetImportJobArn — (String)

          The Amazon Resource Name (ARN) of the dataset import job.

        • jobName — (String)

          The name of the dataset import job.

        • status — (String)

          The status of the dataset import job.

          A dataset import job can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

        • creationDateTime — (Date)

          The date and time (in Unix time) that the dataset import job was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the dataset import job status was last updated.

        • failureReason — (String)

          If a dataset import job fails, the reason behind the failure.

        • importMode — (String)

          The import mode the dataset import job used to update the data in the dataset. For more information see Updating existing bulk data.

          Possible values include:
          • "FULL"
          • "INCREMENTAL"
      • nextToken — (String)

        A token for getting the next set of dataset import jobs (if they exist).

Returns:

  • (AWS.Request)

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

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

Returns the list of datasets contained in the given dataset group. The response provides the properties for each dataset, including the Amazon Resource Name (ARN). For more information on datasets, see CreateDataset.

Service Reference:

Examples:

Calling the listDatasets operation

var params = {
  datasetGroupArn: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listDatasets(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: {})
    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the dataset group that contains the datasets to list.

    • nextToken — (String)

      A token returned from the previous call to ListDatasets for getting the next set of dataset import jobs (if they exist).

    • maxResults — (Integer)

      The maximum number of datasets to return.

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:

      • datasets — (Array<map>)

        An array of Dataset objects. Each object provides metadata information.

        • name — (String)

          The name of the dataset.

        • datasetArn — (String)

          The Amazon Resource Name (ARN) of the dataset.

        • datasetType — (String)

          The dataset type. One of the following values:

          • Interactions

          • Items

          • Users

          • Event-Interactions

        • status — (String)

          The status of the dataset.

          A dataset can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime — (Date)

          The date and time (in Unix time) that the dataset was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the dataset was last updated.

      • nextToken — (String)

        A token for getting the next set of datasets (if they exist).

Returns:

  • (AWS.Request)

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

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

Returns the list of event trackers associated with the account. The response provides the properties for each event tracker, including the Amazon Resource Name (ARN) and tracking ID. For more information on event trackers, see CreateEventTracker.

Service Reference:

Examples:

Calling the listEventTrackers operation

var params = {
  datasetGroupArn: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listEventTrackers(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: {})
    • datasetGroupArn — (String)

      The ARN of a dataset group used to filter the response.

    • nextToken — (String)

      A token returned from the previous call to ListEventTrackers for getting the next set of event trackers (if they exist).

    • maxResults — (Integer)

      The maximum number of event trackers to return.

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:

      • eventTrackers — (Array<map>)

        A list of event trackers.

        • name — (String)

          The name of the event tracker.

        • eventTrackerArn — (String)

          The Amazon Resource Name (ARN) of the event tracker.

        • status — (String)

          The status of the event tracker.

          An event tracker can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime — (Date)

          The date and time (in Unix time) that the event tracker was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the event tracker was last updated.

      • nextToken — (String)

        A token for getting the next set of event trackers (if they exist).

Returns:

  • (AWS.Request)

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

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

Lists all filters that belong to a given dataset group.

Service Reference:

Examples:

Calling the listFilters operation

var params = {
  datasetGroupArn: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listFilters(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: {})
    • datasetGroupArn — (String)

      The ARN of the dataset group that contains the filters.

    • nextToken — (String)

      A token returned from the previous call to ListFilters for getting the next set of filters (if they exist).

    • maxResults — (Integer)

      The maximum number of filters to return.

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:

      • Filters — (Array<map>)

        A list of returned filters.

        • name — (String)

          The name of the filter.

        • filterArn — (String)

          The ARN of the filter.

        • creationDateTime — (Date)

          The time at which the filter was created.

        • lastUpdatedDateTime — (Date)

          The time at which the filter was last updated.

        • datasetGroupArn — (String)

          The ARN of the dataset group to which the filter belongs.

        • failureReason — (String)

          If the filter failed, the reason for the failure.

        • status — (String)

          The status of the filter.

      • nextToken — (String)

        A token for getting the next set of filters (if they exist).

Returns:

  • (AWS.Request)

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

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

Lists the metrics for the metric attribution.

Service Reference:

Examples:

Calling the listMetricAttributionMetrics operation

var params = {
  maxResults: 'NUMBER_VALUE',
  metricAttributionArn: 'STRING_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listMetricAttributionMetrics(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: {})
    • metricAttributionArn — (String)

      The Amazon Resource Name (ARN) of the metric attribution to retrieve attributes for.

    • nextToken — (String)

      Specify the pagination token from a previous request to retrieve the next page of results.

    • maxResults — (Integer)

      The maximum number of metrics to return in one page of results.

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:

      • metrics — (Array<map>)

        The metrics for the specified metric attribution.

        • eventTyperequired — (String)

          The metric's event type.

        • metricNamerequired — (String)

          The metric's name. The name helps you identify the metric in Amazon CloudWatch or Amazon S3.

        • expressionrequired — (String)

          The attribute's expression. Available functions are SUM() or SAMPLECOUNT(). For SUM() functions, provide the dataset type (either Interactions or Items) and column to sum as a parameter. For example SUM(Items.PRICE).

      • nextToken — (String)

        Specify the pagination token from a previous ListMetricAttributionMetricsResponse request to retrieve the next page of results.

Returns:

  • (AWS.Request)

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

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

Lists metric attributions.

Service Reference:

Examples:

Calling the listMetricAttributions operation

var params = {
  datasetGroupArn: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listMetricAttributions(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: {})
    • datasetGroupArn — (String)

      The metric attributions' dataset group Amazon Resource Name (ARN).

    • nextToken — (String)

      Specify the pagination token from a previous request to retrieve the next page of results.

    • maxResults — (Integer)

      The maximum number of metric attributions to return in one page of results.

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:

      • metricAttributions — (Array<map>)

        The list of metric attributions.

        • name — (String)

          The name of the metric attribution.

        • metricAttributionArn — (String)

          The metric attribution's Amazon Resource Name (ARN).

        • status — (String)

          The metric attribution's status.

        • creationDateTime — (Date)

          The metric attribution's creation date time.

        • lastUpdatedDateTime — (Date)

          The metric attribution's last updated date time.

        • failureReason — (String)

          The metric attribution's failure reason.

      • nextToken — (String)

        Specify the pagination token from a previous request to retrieve the next page of results.

Returns:

  • (AWS.Request)

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

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

Returns a list of available recipes. The response provides the properties for each recipe, including the recipe's Amazon Resource Name (ARN).

Service Reference:

Examples:

Calling the listRecipes operation

var params = {
  domain: ECOMMERCE | VIDEO_ON_DEMAND,
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE',
  recipeProvider: SERVICE
};
personalize.listRecipes(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: {})
    • recipeProvider — (String)

      The default is SERVICE.

      Possible values include:
      • "SERVICE"
    • nextToken — (String)

      A token returned from the previous call to ListRecipes for getting the next set of recipes (if they exist).

    • maxResults — (Integer)

      The maximum number of recipes to return.

    • domain — (String)

      Filters returned recipes by domain for a Domain dataset group. Only recipes (Domain dataset group use cases) for this domain are included in the response. If you don't specify a domain, all recipes are returned.

      Possible values include:
      • "ECOMMERCE"
      • "VIDEO_ON_DEMAND"

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:

      • recipes — (Array<map>)

        The list of available recipes.

        • name — (String)

          The name of the recipe.

        • recipeArn — (String)

          The Amazon Resource Name (ARN) of the recipe.

        • status — (String)

          The status of the recipe.

        • creationDateTime — (Date)

          The date and time (in Unix time) that the recipe was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the recipe was last updated.

        • domain — (String)

          The domain of the recipe (if the recipe is a Domain dataset group use case).

          Possible values include:
          • "ECOMMERCE"
          • "VIDEO_ON_DEMAND"
      • nextToken — (String)

        A token for getting the next set of recipes.

Returns:

  • (AWS.Request)

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

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

Returns a list of recommenders in a given Domain dataset group. When a Domain dataset group is not specified, all the recommenders associated with the account are listed. The response provides the properties for each recommender, including the Amazon Resource Name (ARN). For more information on recommenders, see CreateRecommender.

Service Reference:

Examples:

Calling the listRecommenders operation

var params = {
  datasetGroupArn: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listRecommenders(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: {})
    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the Domain dataset group to list the recommenders for. When a Domain dataset group is not specified, all the recommenders associated with the account are listed.

    • nextToken — (String)

      A token returned from the previous call to ListRecommenders for getting the next set of recommenders (if they exist).

    • maxResults — (Integer)

      The maximum number of recommenders to return.

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:

      • recommenders — (Array<map>)

        A list of the recommenders.

        • name — (String)

          The name of the recommender.

        • recommenderArn — (String)

          The Amazon Resource Name (ARN) of the recommender.

        • datasetGroupArn — (String)

          The Amazon Resource Name (ARN) of the Domain dataset group that contains the recommender.

        • recipeArn — (String)

          The Amazon Resource Name (ARN) of the recipe (Domain dataset group use case) that the recommender was created for.

        • recommenderConfig — (map)

          The configuration details of the recommender.

          • itemExplorationConfig — (map<String>)

            Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your recommenders generate personalized recommendations for a user (not popular items or similar items).

          • minRecommendationRequestsPerSecond — (Integer)

            Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support. A high minRecommendationRequestsPerSecond will increase your bill. We recommend starting with 1 for minRecommendationRequestsPerSecond (the default). Track your usage using Amazon CloudWatch metrics, and increase the minRecommendationRequestsPerSecond as necessary.

          • trainingDataConfig — (map)

            Specifies the training data configuration to use when creating a domain recommender.

            • excludedDatasetColumns — (map<Array<String>>)

              Specifies the columns to exclude from training. Each key is a dataset type, and each value is a list of columns. Exclude columns to control what data Amazon Personalize uses to generate recommendations. For example, you might have a column that you want to use only to filter recommendations. You can exclude this column from training and Amazon Personalize considers it only when filtering.

          • enableMetadataWithRecommendations — (Boolean)

            Whether metadata with recommendations is enabled for the recommender. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a recommender, see Enabling metadata in recommendations for a recommender.

            If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

        • status — (String)

          The status of the recommender. A recommender can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • STOP PENDING > STOP IN_PROGRESS > INACTIVE > START PENDING > START IN_PROGRESS > ACTIVE

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime — (Date)

          The date and time (in Unix format) that the recommender was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix format) that the recommender was last updated.

      • nextToken — (String)

        A token for getting the next set of recommenders (if they exist).

Returns:

  • (AWS.Request)

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

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

Returns the list of schemas associated with the account. The response provides the properties for each schema, including the Amazon Resource Name (ARN). For more information on schemas, see CreateSchema.

Service Reference:

Examples:

Calling the listSchemas operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listSchemas(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)

      A token returned from the previous call to ListSchemas for getting the next set of schemas (if they exist).

    • maxResults — (Integer)

      The maximum number of schemas to return.

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:

      • schemas — (Array<map>)

        A list of schemas.

        • name — (String)

          The name of the schema.

        • schemaArn — (String)

          The Amazon Resource Name (ARN) of the schema.

        • creationDateTime — (Date)

          The date and time (in Unix time) that the schema was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the schema was last updated.

        • domain — (String)

          The domain of a schema that you created for a dataset in a Domain dataset group.

          Possible values include:
          • "ECOMMERCE"
          • "VIDEO_ON_DEMAND"
      • nextToken — (String)

        A token used to get the next set of schemas (if they exist).

Returns:

  • (AWS.Request)

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

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

Returns a list of solutions that use the given dataset group. When a dataset group is not specified, all the solutions associated with the account are listed. The response provides the properties for each solution, including the Amazon Resource Name (ARN). For more information on solutions, see CreateSolution.

Service Reference:

Examples:

Calling the listSolutions operation

var params = {
  datasetGroupArn: 'STRING_VALUE',
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE'
};
personalize.listSolutions(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: {})
    • datasetGroupArn — (String)

      The Amazon Resource Name (ARN) of the dataset group.

    • nextToken — (String)

      A token returned from the previous call to ListSolutions for getting the next set of solutions (if they exist).

    • maxResults — (Integer)

      The maximum number of solutions to return.

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:

      • solutions — (Array<map>)

        A list of the current solutions.

        • name — (String)

          The name of the solution.

        • solutionArn — (String)

          The Amazon Resource Name (ARN) of the solution.

        • status — (String)

          The status of the solution.

          A solution can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime — (Date)

          The date and time (in Unix time) that the solution was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the solution was last updated.

        • recipeArn — (String)

          The Amazon Resource Name (ARN) of the recipe used by the solution.

      • nextToken — (String)

        A token for getting the next set of solutions (if they exist).

Returns:

  • (AWS.Request)

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

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

Returns a list of solution versions for the given solution. When a solution is not specified, all the solution versions associated with the account are listed. The response provides the properties for each solution version, including the Amazon Resource Name (ARN).

Service Reference:

Examples:

Calling the listSolutionVersions operation

var params = {
  maxResults: 'NUMBER_VALUE',
  nextToken: 'STRING_VALUE',
  solutionArn: 'STRING_VALUE'
};
personalize.listSolutionVersions(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: {})
    • solutionArn — (String)

      The Amazon Resource Name (ARN) of the solution.

    • nextToken — (String)

      A token returned from the previous call to ListSolutionVersions for getting the next set of solution versions (if they exist).

    • maxResults — (Integer)

      The maximum number of solution versions to return.

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:

      • solutionVersions — (Array<map>)

        A list of solution versions describing the version properties.

        • solutionVersionArn — (String)

          The Amazon Resource Name (ARN) of the solution version.

        • status — (String)

          The status of the solution version.

          A solution version can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

        • creationDateTime — (Date)

          The date and time (in Unix time) that this version of a solution was created.

        • lastUpdatedDateTime — (Date)

          The date and time (in Unix time) that the solution version was last updated.

        • failureReason — (String)

          If a solution version fails, the reason behind the failure.

      • nextToken — (String)

        A token for getting the next set of solution versions (if they exist).

Returns:

  • (AWS.Request)

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

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

Get a list of tags attached to a resource.

Service Reference:

Examples:

Calling the listTagsForResource operation

var params = {
  resourceArn: 'STRING_VALUE' /* required */
};
personalize.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 resource's Amazon Resource Name.

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>)

        The resource's tags.

        • tagKeyrequired — (String)

          One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

        • tagValuerequired — (String)

          The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Returns:

  • (AWS.Request)

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

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

Starts a recommender that is INACTIVE. Starting a recommender does not create any new models, but resumes billing and automatic retraining for the recommender.

Service Reference:

Examples:

Calling the startRecommender operation

var params = {
  recommenderArn: 'STRING_VALUE' /* required */
};
personalize.startRecommender(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: {})
    • recommenderArn — (String)

      The Amazon Resource Name (ARN) of the recommender to start.

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:

      • recommenderArn — (String)

        The Amazon Resource Name (ARN) of the recommender you started.

Returns:

  • (AWS.Request)

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

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

Stops a recommender that is ACTIVE. Stopping a recommender halts billing and automatic retraining for the recommender.

Service Reference:

Examples:

Calling the stopRecommender operation

var params = {
  recommenderArn: 'STRING_VALUE' /* required */
};
personalize.stopRecommender(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: {})
    • recommenderArn — (String)

      The Amazon Resource Name (ARN) of the recommender to stop.

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:

      • recommenderArn — (String)

        The Amazon Resource Name (ARN) of the recommender you stopped.

Returns:

  • (AWS.Request)

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

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

Stops creating a solution version that is in a state of CREATE_PENDING or CREATE IN_PROGRESS.

Depending on the current state of the solution version, the solution version state changes as follows:

  • CREATE_PENDING > CREATE_STOPPED

    or

  • CREATE_IN_PROGRESS > CREATE_STOPPING > CREATE_STOPPED

You are billed for all of the training completed up until you stop the solution version creation. You cannot resume creating a solution version once it has been stopped.

Service Reference:

Examples:

Calling the stopSolutionVersionCreation operation

var params = {
  solutionVersionArn: 'STRING_VALUE' /* required */
};
personalize.stopSolutionVersionCreation(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: {})
    • solutionVersionArn — (String)

      The Amazon Resource Name (ARN) of the solution version you want to stop creating.

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.

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

Add a list of tags to a resource.

Service Reference:

Examples:

Calling the tagResource operation

var params = {
  resourceArn: 'STRING_VALUE', /* required */
  tags: [ /* required */
    {
      tagKey: 'STRING_VALUE', /* required */
      tagValue: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
personalize.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 resource's Amazon Resource Name (ARN).

    • tags — (Array<map>)

      Tags to apply to the resource. For more information see Tagging Amazon Personalize recources.

      • tagKeyrequired — (String)

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • tagValuerequired — (String)

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

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

Remove tags that are attached to a resource.

Service Reference:

Examples:

Calling the untagResource operation

var params = {
  resourceArn: 'STRING_VALUE', /* required */
  tagKeys: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
personalize.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 resource's Amazon Resource Name (ARN).

    • tagKeys — (Array<String>)

      Keys to remove from the resource's 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.

Returns:

  • (AWS.Request)

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

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

Updates a campaign to deploy a retrained solution version with an existing campaign, change your campaign's minProvisionedTPS, or modify your campaign's configuration, such as the exploration configuration.

To update a campaign, the campaign status must be ACTIVE or CREATE FAILED. Check the campaign status using the DescribeCampaign operation.

Note: You can still get recommendations from a campaign while an update is in progress. The campaign will use the previous solution version and campaign configuration to generate recommendations until the latest campaign update status is Active.

For more information about updating a campaign, including code samples, see Updating a campaign. For more information about campaigns, see Creating a campaign.

Service Reference:

Examples:

Calling the updateCampaign operation

var params = {
  campaignArn: 'STRING_VALUE', /* required */
  campaignConfig: {
    enableMetadataWithRecommendations: true || false,
    itemExplorationConfig: {
      '<ParameterName>': 'STRING_VALUE',
      /* '<ParameterName>': ... */
    }
  },
  minProvisionedTPS: 'NUMBER_VALUE',
  solutionVersionArn: 'STRING_VALUE'
};
personalize.updateCampaign(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: {})
    • campaignArn — (String)

      The Amazon Resource Name (ARN) of the campaign.

    • solutionVersionArn — (String)

      The ARN of a new solution version to deploy.

    • minProvisionedTPS — (Integer)

      Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support. A high minProvisionedTPS will increase your bill. We recommend starting with 1 for minProvisionedTPS (the default). Track your usage using Amazon CloudWatch metrics, and increase the minProvisionedTPS as necessary.

    • campaignConfig — (map)

      The configuration details of a campaign.

      • itemExplorationConfig — (map<String>)

        Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your solution uses the User-Personalization recipe.

      • enableMetadataWithRecommendations — (Boolean)

        Whether metadata with recommendations is enabled for the campaign. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a campaign, see Enabling metadata in recommendations for a campaign.

        If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

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:

      • campaignArn — (String)

        The same campaign ARN as given in the request.

Returns:

  • (AWS.Request)

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

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

Update a dataset to replace its schema with a new or existing one. For more information, see Replacing a dataset's schema.

Service Reference:

Examples:

Calling the updateDataset operation

var params = {
  datasetArn: 'STRING_VALUE', /* required */
  schemaArn: 'STRING_VALUE' /* required */
};
personalize.updateDataset(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: {})
    • datasetArn — (String)

      The Amazon Resource Name (ARN) of the dataset that you want to update.

    • schemaArn — (String)

      The Amazon Resource Name (ARN) of the new schema you want use.

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:

      • datasetArn — (String)

        The Amazon Resource Name (ARN) of the dataset you updated.

Returns:

  • (AWS.Request)

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

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

Updates a metric attribution.

Service Reference:

Examples:

Calling the updateMetricAttribution operation

var params = {
  addMetrics: [
    {
      eventType: 'STRING_VALUE', /* required */
      expression: 'STRING_VALUE', /* required */
      metricName: 'STRING_VALUE' /* required */
    },
    /* more items */
  ],
  metricAttributionArn: 'STRING_VALUE',
  metricsOutputConfig: {
    roleArn: 'STRING_VALUE', /* required */
    s3DataDestination: {
      path: 'STRING_VALUE', /* required */
      kmsKeyArn: 'STRING_VALUE'
    }
  },
  removeMetrics: [
    'STRING_VALUE',
    /* more items */
  ]
};
personalize.updateMetricAttribution(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: {})
    • addMetrics — (Array<map>)

      Add new metric attributes to the metric attribution.

      • eventTyperequired — (String)

        The metric's event type.

      • metricNamerequired — (String)

        The metric's name. The name helps you identify the metric in Amazon CloudWatch or Amazon S3.

      • expressionrequired — (String)

        The attribute's expression. Available functions are SUM() or SAMPLECOUNT(). For SUM() functions, provide the dataset type (either Interactions or Items) and column to sum as a parameter. For example SUM(Items.PRICE).

    • removeMetrics — (Array<String>)

      Remove metric attributes from the metric attribution.

    • metricsOutputConfig — (map)

      An output config for the metric attribution.

      • s3DataDestination — (map)

        The configuration details of an Amazon S3 input or output bucket.

        • pathrequired — (String)

          The file path of the Amazon S3 bucket.

        • kmsKeyArn — (String)

          The Amazon Resource Name (ARN) of the Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files.

      • roleArnrequired — (String)

        The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket and add metrics to Amazon CloudWatch. For more information, see Measuring impact of recommendations.

    • metricAttributionArn — (String)

      The Amazon Resource Name (ARN) for the metric attribution to update.

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:

      • metricAttributionArn — (String)

        The Amazon Resource Name (ARN) for the metric attribution that you updated.

Returns:

  • (AWS.Request)

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

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

Updates the recommender to modify the recommender configuration. If you update the recommender to modify the columns used in training, Amazon Personalize automatically starts a full retraining of the models backing your recommender. While the update completes, you can still get recommendations from the recommender. The recommender uses the previous configuration until the update completes. To track the status of this update, use the latestRecommenderUpdate returned in the DescribeRecommender operation.

Service Reference:

Examples:

Calling the updateRecommender operation

var params = {
  recommenderArn: 'STRING_VALUE', /* required */
  recommenderConfig: { /* required */
    enableMetadataWithRecommendations: true || false,
    itemExplorationConfig: {
      '<ParameterName>': 'STRING_VALUE',
      /* '<ParameterName>': ... */
    },
    minRecommendationRequestsPerSecond: 'NUMBER_VALUE',
    trainingDataConfig: {
      excludedDatasetColumns: {
        '<DatasetType>': [
          'STRING_VALUE',
          /* more items */
        ],
        /* '<DatasetType>': ... */
      }
    }
  }
};
personalize.updateRecommender(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: {})
    • recommenderArn — (String)

      The Amazon Resource Name (ARN) of the recommender to modify.

    • recommenderConfig — (map)

      The configuration details of the recommender.

      • itemExplorationConfig — (map<String>)

        Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your recommenders generate personalized recommendations for a user (not popular items or similar items).

      • minRecommendationRequestsPerSecond — (Integer)

        Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support. A high minRecommendationRequestsPerSecond will increase your bill. We recommend starting with 1 for minRecommendationRequestsPerSecond (the default). Track your usage using Amazon CloudWatch metrics, and increase the minRecommendationRequestsPerSecond as necessary.

      • trainingDataConfig — (map)

        Specifies the training data configuration to use when creating a domain recommender.

        • excludedDatasetColumns — (map<Array<String>>)

          Specifies the columns to exclude from training. Each key is a dataset type, and each value is a list of columns. Exclude columns to control what data Amazon Personalize uses to generate recommendations. For example, you might have a column that you want to use only to filter recommendations. You can exclude this column from training and Amazon Personalize considers it only when filtering.

      • enableMetadataWithRecommendations — (Boolean)

        Whether metadata with recommendations is enabled for the recommender. If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response. For information about enabling metadata for a recommender, see Enabling metadata in recommendations for a recommender.

        If you enable metadata in recommendations, you will incur additional costs. For more information, see Amazon Personalize pricing.

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:

      • recommenderArn — (String)

        The same recommender Amazon Resource Name (ARN) as given in the request.

Returns:

  • (AWS.Request)

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