interface ValueRangeProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CustomerProfiles.CfnCalculatedAttributeDefinition.ValueRangeProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnCalculatedAttributeDefinition_ValueRangeProperty |
![]() | software.amazon.awscdk.services.customerprofiles.CfnCalculatedAttributeDefinition.ValueRangeProperty |
![]() | aws_cdk.aws_customerprofiles.CfnCalculatedAttributeDefinition.ValueRangeProperty |
![]() | aws-cdk-lib » aws_customerprofiles » CfnCalculatedAttributeDefinition » 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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const valueRangeProperty: customerprofiles.CfnCalculatedAttributeDefinition.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
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
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.