interface VersioningConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.VersioningConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_VersioningConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.VersioningConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.VersioningConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » 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 { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const versioningConfigurationProperty: iotanalytics_mixins.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