interface EventParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnRecommender.EventParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnRecommender_EventParametersProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnRecommender.EventParametersProperty |
Python | aws_cdk.aws_customerprofiles.CfnRecommender.EventParametersProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnRecommender » EventParametersProperty |
Event parameters with type and value threshold.
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 eventParametersProperty: customerprofiles.CfnRecommender.EventParametersProperty = {
eventType: 'eventType',
// the properties below are optional
eventValueThreshold: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The type of event. |
| event | number | The threshold of the event type. |
eventType
Type:
string
The type of event.
eventValueThreshold?
Type:
number
(optional)
The threshold of the event type.
Only events with a value greater or equal to this threshold will be considered for solution creation.

.NET
Go
Java
Python
TypeScript