interface VersioningConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoTAnalytics.CfnDataset.VersioningConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDataset_VersioningConfigurationProperty | 
  Java | software.amazon.awscdk.services.iotanalytics.CfnDataset.VersioningConfigurationProperty | 
  Python | aws_cdk.aws_iotanalytics.CfnDataset.VersioningConfigurationProperty | 
  TypeScript  | aws-cdk-lib » aws_iotanalytics » CfnDataset » VersioningConfigurationProperty | 
Information about the versioning of dataset contents.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
const versioningConfigurationProperty: iotanalytics.CfnDataset.VersioningConfigurationProperty = {
  maxVersions: 123,
  unlimited: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| max | number | How many versions of dataset contents are kept. | 
| unlimited? | boolean | IResolvable | If true, unlimited versions of dataset contents are kept. | 
maxVersions?
Type:
number
(optional)
How many versions of dataset contents are kept.
The unlimited parameter must be false .
unlimited?
Type:
boolean | IResolvable
(optional)
If true, unlimited versions of dataset contents are kept.

 .NET
 Go
 Java
 Python
 TypeScript