Show / Hide Table of Contents

Interface CfnCalculatedAttributeDefinition.IConditionsProperty

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

Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCalculatedAttributeDefinition.IConditionsProperty
Syntax (vb)
Public Interface 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

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.

Properties

ObjectCount

The number of profile objects used for the calculated attribute.

double? ObjectCount { get; }
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.

object? Range { get; }
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.

object? Threshold { get; }
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

Back to top Generated by DocFX