interface ConditionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnCalculatedAttributeDefinitionPropsMixin.ConditionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnCalculatedAttributeDefinitionPropsMixin_ConditionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.ConditionsProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.ConditionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnCalculatedAttributeDefinitionPropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const conditionsProperty: customerprofiles_mixins.CfnCalculatedAttributeDefinitionPropsMixin.ConditionsProperty = {
objectCount: 123,
range: {
timestampFormat: 'timestampFormat',
timestampSource: 'timestampSource',
unit: 'unit',
value: 123,
valueRange: {
end: 123,
start: 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.

.NET
Go
Java
Python
TypeScript