interface RecommenderUpdateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnRecommender.RecommenderUpdateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnRecommender_RecommenderUpdateProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnRecommender.RecommenderUpdateProperty |
Python | aws_cdk.aws_customerprofiles.CfnRecommender.RecommenderUpdateProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnRecommender » RecommenderUpdateProperty |
Information about the latest recommender update.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const recommenderUpdateProperty: customerprofiles.CfnRecommender.RecommenderUpdateProperty = {
creationDateTime: 'creationDateTime',
failureReason: 'failureReason',
lastUpdatedDateTime: 'lastUpdatedDateTime',
recommenderConfig: {
eventsConfig: {
eventParametersList: [{
eventType: 'eventType',
// the properties below are optional
eventValueThreshold: 123,
}],
},
},
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string | The timestamp of when the update was created. |
| failure | string | The reason for update failure. |
| last | string | The timestamp of when the update was last modified. |
| recommender | IResolvable | Recommender | Configuration for the recommender. |
| status? | string | The status of the recommender. |
creationDateTime?
Type:
string
(optional)
The timestamp of when the update was created.
failureReason?
Type:
string
(optional)
The reason for update failure.
lastUpdatedDateTime?
Type:
string
(optional)
The timestamp of when the update was last modified.
recommenderConfig?
Type:
IResolvable | Recommender
(optional)
Configuration for the recommender.
status?
Type:
string
(optional)
The status of the recommender.

.NET
Go
Java
Python
TypeScript