interface StorageMaximumSizeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.StorageMaximumSizeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_StorageMaximumSizeProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.StorageMaximumSizeProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.StorageMaximumSizeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnCampaignPropsMixin » StorageMaximumSizeProperty |
The maximum storage size for the data partition.
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 storageMaximumSizeProperty: iotfleetwise_mixins.CfnCampaignPropsMixin.StorageMaximumSizeProperty = {
unit: 'unit',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| unit? | string | The data type of the data to store. |
| value? | number | The maximum amount of time to store data. |
unit?
Type:
string
(optional)
The data type of the data to store.
value?
Type:
number
(optional)
The maximum amount of time to store data.

.NET
Go
Java
Python
TypeScript