Interface CfnRecommender.EventParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecommender.EventParametersProperty.Jsii$Proxy
- Enclosing class:
CfnRecommender
@Stability(Stable)
public static interface CfnRecommender.EventParametersProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.customerprofiles.*;
EventParametersProperty eventParametersProperty = EventParametersProperty.builder()
.eventType("eventType")
// the properties below are optional
.eventValueThreshold(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecommender.EventParametersPropertystatic final classAn implementation forCfnRecommender.EventParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventType
The type of event.- See Also:
-
getEventValueThreshold
The threshold of the event type.Only events with a value greater or equal to this threshold will be considered for solution creation.
- See Also:
-
builder
-