aws-cdk-lib.aws_customerprofiles.CfnCalculatedAttributeDefinition.ConditionsProperty

interface ConditionsProperty

LanguageType name
.NETAmazon.CDK.AWS.CustomerProfiles.CfnCalculatedAttributeDefinition.ConditionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnCalculatedAttributeDefinition_ConditionsProperty
Javasoftware.amazon.awscdk.services.customerprofiles.CfnCalculatedAttributeDefinition.ConditionsProperty
Pythonaws_cdk.aws_customerprofiles.CfnCalculatedAttributeDefinition.ConditionsProperty
TypeScript aws-cdk-lib » aws_customerprofiles » CfnCalculatedAttributeDefinition » ConditionsProperty

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const conditionsProperty: customerprofiles.CfnCalculatedAttributeDefinition.ConditionsProperty = {
  objectCount: 123,
  range: {
    unit: 'unit',
    value: 123,
  },
  threshold: {
    operator: 'operator',
    value: 'value',
  },
};

Properties

NameTypeDescription
objectCount?numberThe number of profile objects used for the calculated attribute.
range?IResolvable | RangePropertyThe relative time period over which data is included in the aggregation.
threshold?IResolvable | ThresholdPropertyThe threshold for the calculated attribute.

objectCount?

Type: number (optional)

The number of profile objects used for the calculated attribute.


range?

Type: IResolvable | RangeProperty (optional)

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


threshold?

Type: IResolvable | ThresholdProperty (optional)

The threshold for the calculated attribute.