Interface CfnRecommenderPropsMixin.EventsConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRecommenderPropsMixin.EventsConfigProperty.Jsii$Proxy
Enclosing class:
CfnRecommenderPropsMixin

@Stability(Stable) public static interface CfnRecommenderPropsMixin.EventsConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.*;
 EventsConfigProperty eventsConfigProperty = EventsConfigProperty.builder()
         .eventParametersList(List.of(EventParametersProperty.builder()
                 .eventType("eventType")
                 .eventValueThreshold(123)
                 .build()))
         .build();
 

See Also: