interface EventsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnRecommenderPropsMixin.EventsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnRecommenderPropsMixin_EventsConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnRecommenderPropsMixin.EventsConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnRecommenderPropsMixin.EventsConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnRecommenderPropsMixin » 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/cfn-property-mixins';
const eventsConfigProperty: customerprofiles.CfnRecommenderPropsMixin.EventsConfigProperty = {
eventParametersList: [{
eventType: 'eventType',
eventValueThreshold: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | IResolvable | (IResolvable | Event)[] | List of event parameters with their value thresholds. |
eventParametersList?
Type:
IResolvable | (IResolvable | Event)[]
(optional)
List of event parameters with their value thresholds.

.NET
Go
Java
Python
TypeScript