interface ConditionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnCalculatedAttributeDefinition.ConditionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnCalculatedAttributeDefinition_ConditionsProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnCalculatedAttributeDefinition.ConditionsProperty |
Python | aws_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
Name | Type | Description |
---|---|---|
object | number | The number of profile objects used for the calculated attribute. |
range? | IResolvable | Range | The relative time period over which data is included in the aggregation. |
threshold? | IResolvable | Threshold | The threshold for the calculated attribute. |
objectCount?
Type:
number
(optional)
The number of profile objects used for the calculated attribute.
range?
Type:
IResolvable
|
Range
(optional)
The relative time period over which data is included in the aggregation.
threshold?
Type:
IResolvable
|
Threshold
(optional)
The threshold for the calculated attribute.