interface ProfileTypeDimensionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnSegmentDefinitionPropsMixin.ProfileTypeDimensionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnSegmentDefinitionPropsMixin_ProfileTypeDimensionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnSegmentDefinitionPropsMixin.ProfileTypeDimensionProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnSegmentDefinitionPropsMixin.ProfileTypeDimensionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnSegmentDefinitionPropsMixin » ProfileTypeDimensionProperty |
Specifies profile type based criteria for a segment.
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 profileTypeDimensionProperty: customerprofiles.CfnSegmentDefinitionPropsMixin.ProfileTypeDimensionProperty = {
dimensionType: 'dimensionType',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | string | The action to segment on. |
| values? | string[] | The values to apply the DimensionType on. |
dimensionType?
Type:
string
(optional)
The action to segment on.
values?
Type:
string[]
(optional)
The values to apply the DimensionType on.

.NET
Go
Java
Python
TypeScript