Skip to content

List Recommender Schemas

customerprofiles_list_recommender_schemas R Documentation

Returns a list of recommender schemas in the specified domain

Description

Returns a list of recommender schemas in the specified domain.

Usage

customerprofiles_list_recommender_schemas(DomainName, MaxResults,
  NextToken)

Arguments

DomainName

[required] The unique name of the domain.

MaxResults

The maximum number of recommender schemas to return in the response. The default value is 100.

NextToken

A token received from a previous ListRecommenderSchemas call to retrieve the next page of results.

Value

A list with the following syntax:

list(
  NextToken = "string",
  RecommenderSchemas = list(
    list(
      RecommenderSchemaName = "string",
      Fields = list(
        list(
          list(
            TargetFieldName = "string",
            ContentType = "STRING"|"NUMBER",
            FeatureType = "TEXTUAL"|"CATEGORICAL"
          )
        )
      ),
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      Status = "ACTIVE"|"DELETING"
    )
  )
)

Request syntax

svc$list_recommender_schemas(
  DomainName = "string",
  MaxResults = 123,
  NextToken = "string"
)