interface RangeOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnSegmentDefinitionPropsMixin.RangeOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnSegmentDefinitionPropsMixin_RangeOverrideProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnSegmentDefinitionPropsMixin.RangeOverrideProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnSegmentDefinitionPropsMixin.RangeOverrideProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnSegmentDefinitionPropsMixin » RangeOverrideProperty |
Overrides the original range on a calculated attribute definition.
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 rangeOverrideProperty: customerprofiles.CfnSegmentDefinitionPropsMixin.RangeOverrideProperty = {
end: 123,
start: 123,
unit: 'unit',
};
Properties
| Name | Type | Description |
|---|---|---|
| end? | number | The end time of when to include objects. |
| start? | number | The start time of when to include objects. |
| unit? | string | The unit for start and end. |
end?
Type:
number
(optional)
The end time of when to include objects.
start?
Type:
number
(optional)
The start time of when to include objects.
unit?
Type:
string
(optional)
The unit for start and end.

.NET
Go
Java
Python
TypeScript