interface CalculatedAttributeDimensionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnSegmentDefinitionPropsMixin_CalculatedAttributeDimensionProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnSegmentDefinitionPropsMixin » CalculatedAttributeDimensionProperty |
Object that segments on Customer Profile's Calculated Attributes.
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 calculatedAttributeDimensionProperty: customerprofiles_mixins.CfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty = {
conditionOverrides: {
range: {
end: 123,
start: 123,
unit: 'unit',
},
},
dimensionType: 'dimensionType',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| condition | IResolvable | Condition | Applies the given condition over the initial Calculated Attribute's definition. |
| dimension | string | The action to segment with. |
| values? | string[] | The values to apply the DimensionType with. |
conditionOverrides?
Type:
IResolvable | Condition
(optional)
Applies the given condition over the initial Calculated Attribute's definition.
dimensionType?
Type:
string
(optional)
The action to segment with.
values?
Type:
string[]
(optional)
The values to apply the DimensionType with.

.NET
Go
Java
Python
TypeScript