AWSPinpointTargetingRecommenderConfigurationResponse

Objective-C

@interface AWSPinpointTargetingRecommenderConfigurationResponse

Swift

class AWSPinpointTargetingRecommenderConfigurationResponse

Provides information about Amazon Pinpoint configuration settings for retrieving and processing data from a recommender model.

Required parameters: [RecommendationProviderUri, LastModifiedDate, CreationDate, RecommendationProviderRoleArn, Id]

  • A map that defines 1-10 custom endpoint or user attributes, depending on the value for the RecommendationProviderIdType property. Each of these attributes temporarily stores a recommended item that’s retrieved from the recommender model and sent to an AWS Lambda function for additional processing. Each attribute can be used as a message variable in a message template.

    This value is null if the configuration doesn’t invoke an AWS Lambda function (RecommendationTransformerUri) to perform additional processing of recommendation data.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable attributes;

    Swift

    var attributes: [String : String]? { get set }
  • The date, in extended ISO 8601 format, when the configuration was created for the recommender model.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable creationDate;

    Swift

    var creationDate: String? { get set }
  • The custom description of the configuration for the recommender model.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable detail;

    Swift

    var detail: String? { get set }
  • The unique identifier for the recommender model configuration.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable identifier;

    Swift

    var identifier: String? { get set }
  • The date, in extended ISO 8601 format, when the configuration for the recommender model was last modified.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable lastModifiedDate;

    Swift

    var lastModifiedDate: String? { get set }
  • The custom name of the configuration for the recommender model.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable name;

    Swift

    var name: String? { get set }
  • The type of Amazon Pinpoint ID that’s associated with unique user IDs in the recommender model. This value enables the model to use attribute and event data that’s specific to a particular endpoint or user in an Amazon Pinpoint application. Possible values are:

    • PINPOINT_ENDPOINT_ID - Each user in the model is associated with a particular endpoint in Amazon Pinpoint. The data is correlated based on endpoint IDs in Amazon Pinpoint. This is the default value.

    • PINPOINT_USER_ID - Each user in the model is associated with a particular user and endpoint in Amazon Pinpoint. The data is correlated based on user IDs in Amazon Pinpoint. If this value is specified, an endpoint definition in Amazon Pinpoint has to specify both a user ID (UserId) and an endpoint ID. Otherwise, messages won’t be sent to the user’s endpoint.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable recommendationProviderIdType;

    Swift

    var recommendationProviderIdType: String? { get set }
  • The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that authorizes Amazon Pinpoint to retrieve recommendation data from the recommender model.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable recommendationProviderRoleArn;

    Swift

    var recommendationProviderRoleArn: String? { get set }
  • The Amazon Resource Name (ARN) of the recommender model that Amazon Pinpoint retrieves the recommendation data from. This value is the ARN of an Amazon Personalize campaign.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable recommendationProviderUri;

    Swift

    var recommendationProviderUri: String? { get set }
  • The name or Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Pinpoint invokes to perform additional processing of recommendation data that it retrieves from the recommender model.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable recommendationTransformerUri;

    Swift

    var recommendationTransformerUri: String? { get set }
  • The custom display name for the standard endpoint or user attribute (RecommendationItems) that temporarily stores recommended items for each endpoint or user, depending on the value for the RecommendationProviderIdType property. This name appears in the Attribute finder of the template editor on the Amazon Pinpoint console.

    This value is null if the configuration doesn’t invoke an AWS Lambda function (RecommendationTransformerUri) to perform additional processing of recommendation data.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable recommendationsDisplayName;

    Swift

    var recommendationsDisplayName: String? { get set }
  • The number of recommended items that are retrieved from the model for each endpoint or user, depending on the value for the RecommendationProviderIdType property. This number determines how many recommended items are available for use in message variables.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable recommendationsPerMessage;

    Swift

    var recommendationsPerMessage: NSNumber? { get set }