interface ProfileDimensionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnSegmentDefinition.ProfileDimensionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnSegmentDefinition_ProfileDimensionProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty |
Python | aws_cdk.aws_customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnSegmentDefinition » ProfileDimensionProperty |
Object that segments on various Customer profile's fields that are larger than normal.
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-lib';
const profileDimensionProperty: customerprofiles.CfnSegmentDefinition.ProfileDimensionProperty = {
dimensionType: 'dimensionType',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | string | The action to segment on. |
| values | string[] |
dimensionType
Type:
string
The action to segment on.
values
Type:
string[]

.NET
Go
Java
Python
TypeScript