Show / Hide Table of Contents

Class CfnCalculatedAttributeDefinition.ConditionsProperty

The conditions including range, object count, and threshold for the calculated attribute.

Inheritance
object
CfnCalculatedAttributeDefinition.ConditionsProperty
Implements
CfnCalculatedAttributeDefinition.IConditionsProperty
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 CfnCalculatedAttributeDefinition.ConditionsProperty : CfnCalculatedAttributeDefinition.IConditionsProperty
Syntax (vb)
Public Class CfnCalculatedAttributeDefinition.ConditionsProperty Implements CfnCalculatedAttributeDefinition.IConditionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-conditions.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 conditionsProperty = new ConditionsProperty {
                 ObjectCount = 123,
                 Range = new RangeProperty {
                     Unit = "unit",

                     // the properties below are optional
                     TimestampFormat = "timestampFormat",
                     TimestampSource = "timestampSource",
                     Value = 123,
                     ValueRange = new ValueRangeProperty {
                         End = 123,
                         Start = 123
                     }
                 },
                 Threshold = new ThresholdProperty {
                     Operator = "operator",
                     Value = "value"
                 }
             };

Synopsis

Constructors

ConditionsProperty()

The conditions including range, object count, and threshold for the calculated attribute.

Properties

ObjectCount

The number of profile objects used for the calculated attribute.

Range

The relative time period over which data is included in the aggregation.

Threshold

The threshold for the calculated attribute.

Constructors

ConditionsProperty()

The conditions including range, object count, and threshold for the calculated attribute.

public ConditionsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-conditions.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 conditionsProperty = new ConditionsProperty {
                 ObjectCount = 123,
                 Range = new RangeProperty {
                     Unit = "unit",

                     // the properties below are optional
                     TimestampFormat = "timestampFormat",
                     TimestampSource = "timestampSource",
                     Value = 123,
                     ValueRange = new ValueRangeProperty {
                         End = 123,
                         Start = 123
                     }
                 },
                 Threshold = new ThresholdProperty {
                     Operator = "operator",
                     Value = "value"
                 }
             };

Properties

ObjectCount

The number of profile objects used for the calculated attribute.

public double? ObjectCount { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-conditions.html#cfn-customerprofiles-calculatedattributedefinition-conditions-objectcount

Range

The relative time period over which data is included in the aggregation.

public object? Range { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-conditions.html#cfn-customerprofiles-calculatedattributedefinition-conditions-range

Type union: either IResolvable or CfnCalculatedAttributeDefinition.IRangeProperty

Threshold

The threshold for the calculated attribute.

public object? Threshold { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-conditions.html#cfn-customerprofiles-calculatedattributedefinition-conditions-threshold

Type union: either IResolvable or CfnCalculatedAttributeDefinition.IThresholdProperty

Implements

CfnCalculatedAttributeDefinition.IConditionsProperty
Back to top Generated by DocFX