interface StorageMinimumTimeToLiveProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnCampaign.StorageMinimumTimeToLiveProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnCampaign_StorageMinimumTimeToLiveProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnCampaign.StorageMinimumTimeToLiveProperty |
Python | aws_cdk.aws_iotfleetwise.CfnCampaign.StorageMinimumTimeToLiveProperty |
TypeScript | aws-cdk-lib » aws_iotfleetwise » CfnCampaign » 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 { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const storageMinimumTimeToLiveProperty: iotfleetwise.CfnCampaign.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
The time increment type.
value
Type:
number
The minimum amount of time to store the data.

.NET
Go
Java
Python
TypeScript