interface VersioningConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnDatasetPropsMixin.VersioningConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnDatasetPropsMixin_VersioningConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnDatasetPropsMixin.VersioningConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnDatasetPropsMixin.VersioningConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » CfnDatasetPropsMixin » 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/cfn-property-mixins';
const versioningConfigurationProperty: iotanalytics.CfnDatasetPropsMixin.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