Interface CfnRecommender.EventsConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecommender.EventsConfigProperty.Jsii$Proxy
- Enclosing class:
CfnRecommender
@Stability(Stable)
public static interface CfnRecommender.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.services.customerprofiles.*;
EventsConfigProperty eventsConfigProperty = EventsConfigProperty.builder()
.eventParametersList(List.of(EventParametersProperty.builder()
.eventType("eventType")
// the properties below are optional
.eventValueThreshold(123)
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecommender.EventsConfigPropertystatic final classAn implementation forCfnRecommender.EventsConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()List of event parameters with their value thresholds.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventParametersList
List of event parameters with their value thresholds.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRecommender.EventParametersProperty>- See Also:
-
builder
-