interface ThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnCalculatedAttributeDefinitionPropsMixin.ThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnCalculatedAttributeDefinitionPropsMixin_ThresholdProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.ThresholdProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.ThresholdProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnCalculatedAttributeDefinitionPropsMixin » ThresholdProperty |
The 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 thresholdProperty: customerprofiles_mixins.CfnCalculatedAttributeDefinitionPropsMixin.ThresholdProperty = {
operator: 'operator',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| operator? | string | The operator of the threshold. |
| value? | string | The value of the threshold. |
operator?
Type:
string
(optional)
The operator of the threshold.
value?
Type:
string
(optional)
The value of the threshold.

.NET
Go
Java
Python
TypeScript