Learn R Programming

paws (version 0.1.12)

personalize: Amazon Personalize

Description

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

Usage

personalize(config = list())

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- personalize(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

create_batch_inference_jobCreates a batch inference job
create_campaignCreates a campaign by deploying a solution version
create_datasetCreates an empty dataset and adds it to the specified dataset group
create_dataset_groupCreates an empty dataset group
create_dataset_import_jobCreates a job that imports training data from your data source (an Amazon S3 bucket) to an Amazon Personalize dataset
create_event_trackerCreates an event tracker that you use when sending event data to the specified dataset group using the PutEvents API
create_filterCreates a recommendation filter
create_schemaCreates an Amazon Personalize schema from the specified schema string
create_solutionCreates the configuration for training a model
create_solution_versionTrains or retrains an active solution
delete_campaignRemoves a campaign by deleting the solution deployment
delete_datasetDeletes a dataset
delete_dataset_groupDeletes a dataset group
delete_event_trackerDeletes the event tracker
delete_filterDeletes a filter
delete_schemaDeletes a schema
delete_solutionDeletes all versions of a solution and the Solution object itself
describe_algorithmDescribes the given algorithm
describe_batch_inference_jobGets 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
describe_campaignDescribes the given campaign, including its status
describe_datasetDescribes the given dataset
describe_dataset_groupDescribes the given dataset group
describe_dataset_import_jobDescribes the dataset import job created by CreateDatasetImportJob, including the import job status
describe_event_trackerDescribes an event tracker
describe_feature_transformationDescribes the given feature transformation
describe_filterDescribes a filter's properties
describe_recipeDescribes a recipe
describe_schemaDescribes a schema
describe_solutionDescribes a solution
describe_solution_versionDescribes a specific version of a solution
get_solution_metricsGets the metrics for the specified solution version
list_batch_inference_jobsGets a list of the batch inference jobs that have been performed off of a solution version
list_campaignsReturns a list of campaigns that use the given solution
list_dataset_groupsReturns a list of dataset groups
list_dataset_import_jobsReturns a list of dataset import jobs that use the given dataset
list_datasetsReturns the list of datasets contained in the given dataset group
list_event_trackersReturns the list of event trackers associated with the account
list_filtersLists all filters that belong to a given dataset group
list_recipesReturns a list of available recipes
list_schemasReturns the list of schemas associated with the account
list_solutionsReturns a list of solutions that use the given dataset group
list_solution_versionsReturns a list of solution versions for the given solution
update_campaignUpdates a campaign by either deploying a new solution or changing the value of the campaign's minProvisionedTPS parameter

Examples

Run this code
if (FALSE) {
svc <- personalize()
svc$create_batch_inference_job(
  Foo = 123
)
}

Run the code above in your browser using DataLab