interface AttributeDimensionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnSegmentDefinitionPropsMixin.AttributeDimensionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnSegmentDefinitionPropsMixin_AttributeDimensionProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnSegmentDefinitionPropsMixin.AttributeDimensionProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnSegmentDefinitionPropsMixin.AttributeDimensionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnSegmentDefinitionPropsMixin » AttributeDimensionProperty |
Object that defines how to filter the incoming objects 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 attributeDimensionProperty: customerprofiles_mixins.CfnSegmentDefinitionPropsMixin.AttributeDimensionProperty = {
dimensionType: 'dimensionType',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | string | The action to segment with. |
| values? | string[] | The values to apply the DimensionType on. |
dimensionType?
Type:
string
(optional)
The action to segment with.
values?
Type:
string[]
(optional)
The values to apply the DimensionType on.

.NET
Go
Java
Python
TypeScript