interface ValueRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnCalculatedAttributeDefinitionPropsMixin.ValueRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnCalculatedAttributeDefinitionPropsMixin_ValueRangeProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.ValueRangeProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.ValueRangeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnCalculatedAttributeDefinitionPropsMixin » ValueRangeProperty |
A structure letting customers specify a relative time window over which over which data is included in the Calculated Attribute.
Use positive numbers to indicate that the endpoint is in the past, and negative numbers to indicate it is in the future. ValueRange overrides Value.
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 valueRangeProperty: customerprofiles_mixins.CfnCalculatedAttributeDefinitionPropsMixin.ValueRangeProperty = {
end: 123,
start: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| end? | number | The ending point for this overridden range. |
| start? | number | The starting point for this overridden range. |
end?
Type:
number
(optional)
The ending point for this overridden range.
Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
start?
Type:
number
(optional)
The starting point for this overridden range.
Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.

.NET
Go
Java
Python
TypeScript