interface ThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnCalculatedAttributeDefinitionPropsMixin.ThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnCalculatedAttributeDefinitionPropsMixin_ThresholdProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnCalculatedAttributeDefinitionPropsMixin.ThresholdProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnCalculatedAttributeDefinitionPropsMixin.ThresholdProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » 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 { aws_customerprofiles as customerprofiles } from '@aws-cdk/cfn-property-mixins';
const thresholdProperty: customerprofiles.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