Show / Hide Table of Contents

Interface CfnRecommender.IEventParametersProperty

Event parameters with type and value threshold.

Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRecommender.IEventParametersProperty
Syntax (vb)
Public Interface CfnRecommender.IEventParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-eventparameters.html

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

Properties

EventType

The type of event.

EventValueThreshold

The threshold of the event type.

Properties

EventType

The type of event.

string EventType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-eventparameters.html#cfn-customerprofiles-recommender-eventparameters-eventtype

EventValueThreshold

The threshold of the event type.

double? EventValueThreshold { get; }
Property Value

double?

Remarks

Only events with a value greater or equal to this threshold will be considered for solution creation.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-eventparameters.html#cfn-customerprofiles-recommender-eventparameters-eventvaluethreshold

Back to top Generated by DocFX