interface RangeOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnSegmentDefinitionPropsMixin.RangeOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnSegmentDefinitionPropsMixin_RangeOverrideProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnSegmentDefinitionPropsMixin.RangeOverrideProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnSegmentDefinitionPropsMixin.RangeOverrideProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const rangeOverrideProperty: customerprofiles_mixins.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