interface EventsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnRecommender.EventsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnRecommender_EventsConfigProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnRecommender.EventsConfigProperty |
Python | aws_cdk.aws_customerprofiles.CfnRecommender.EventsConfigProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnRecommender » EventsConfigProperty |
Configuration for events used in the recommender.
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 eventsConfigProperty: customerprofiles.CfnRecommender.EventsConfigProperty = {
eventParametersList: [{
eventType: 'eventType',
// the properties below are optional
eventValueThreshold: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | IResolvable | (IResolvable | Event)[] | List of event parameters with their value thresholds. |
eventParametersList
Type:
IResolvable | (IResolvable | Event)[]
List of event parameters with their value thresholds.

.NET
Go
Java
Python
TypeScript