interface DateDimensionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnSegmentDefinitionPropsMixin.DateDimensionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnSegmentDefinitionPropsMixin_DateDimensionProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnSegmentDefinitionPropsMixin.DateDimensionProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnSegmentDefinitionPropsMixin.DateDimensionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnSegmentDefinitionPropsMixin » DateDimensionProperty |
Object that segments on various Customer Profile's date fields.
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 dateDimensionProperty: customerprofiles_mixins.CfnSegmentDefinitionPropsMixin.DateDimensionProperty = {
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