interface EventParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnRecommenderPropsMixin.EventParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnRecommenderPropsMixin_EventParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnRecommenderPropsMixin.EventParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnRecommenderPropsMixin.EventParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnRecommenderPropsMixin » 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/cfn-property-mixins';
const eventParametersProperty: customerprofiles.CfnRecommenderPropsMixin.EventParametersProperty = {
eventType: 'eventType',
eventValueThreshold: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The type of event. |
| event | number | The threshold of the event type. |
eventType?
Type:
string
(optional)
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