interface StorageMinimumTimeToLiveProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.StorageMinimumTimeToLiveProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_StorageMinimumTimeToLiveProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.StorageMinimumTimeToLiveProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.StorageMinimumTimeToLiveProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnCampaignPropsMixin » StorageMinimumTimeToLiveProperty |
Information about the minimum amount of time that data will be kept.
Access to certain AWS IoT FleetWise features is currently gated. For more information, see AWS Region and feature availability in the AWS IoT FleetWise Developer Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const storageMinimumTimeToLiveProperty: iotfleetwise_mixins.CfnCampaignPropsMixin.StorageMinimumTimeToLiveProperty = {
unit: 'unit',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| unit? | string | The time increment type. |
| value? | number | The minimum amount of time to store the data. |
unit?
Type:
string
(optional)
The time increment type.
value?
Type:
number
(optional)
The minimum amount of time to store the data.

.NET
Go
Java
Python
TypeScript