Class CfnRecommender.EventParametersProperty
Event parameters with type and value threshold.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRecommender.EventParametersProperty : CfnRecommender.IEventParametersProperty
Syntax (vb)
Public Class CfnRecommender.EventParametersProperty Implements CfnRecommender.IEventParametersProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CustomerProfiles;
var eventParametersProperty = new EventParametersProperty {
EventType = "eventType",
// the properties below are optional
EventValueThreshold = 123
};
Synopsis
Constructors
| EventParametersProperty() | Event parameters with type and value threshold. |
Properties
| EventType | The type of event. |
| EventValueThreshold | The threshold of the event type. |
Constructors
EventParametersProperty()
Event parameters with type and value threshold.
public EventParametersProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CustomerProfiles;
var eventParametersProperty = new EventParametersProperty {
EventType = "eventType",
// the properties below are optional
EventValueThreshold = 123
};
Properties
EventType
The type of event.
public string EventType { get; set; }
Property Value
Remarks
EventValueThreshold
The threshold of the event type.
public double? EventValueThreshold { get; set; }
Property Value
Remarks
Only events with a value greater or equal to this threshold will be considered for solution creation.