interface RecommenderUpdateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnRecommenderPropsMixin.RecommenderUpdateProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnRecommenderPropsMixin_RecommenderUpdateProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnRecommenderPropsMixin.RecommenderUpdateProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnRecommenderPropsMixin.RecommenderUpdateProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnRecommenderPropsMixin » 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/cfn-property-mixins';
const recommenderUpdateProperty: customerprofiles.CfnRecommenderPropsMixin.RecommenderUpdateProperty = {
creationDateTime: 'creationDateTime',
failureReason: 'failureReason',
lastUpdatedDateTime: 'lastUpdatedDateTime',
recommenderConfig: {
eventsConfig: {
eventParametersList: [{
eventType: 'eventType',
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