Show / Hide Table of Contents

Class CfnRecommender.EventParametersProperty

Event parameters with type and value threshold.

Inheritance
object
CfnRecommender.EventParametersProperty
Implements
CfnRecommender.IEventParametersProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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
             };

Properties

EventType

The type of event.

public string EventType { get; set; }
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.

public double? EventValueThreshold { get; set; }
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

Implements

CfnRecommender.IEventParametersProperty
Back to top Generated by DocFX