Interface CfnDataset.VersioningConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataset.VersioningConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnDataset
@Stability(Stable)
public static interface CfnDataset.VersioningConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotanalytics.*;
VersioningConfigurationProperty versioningConfigurationProperty = VersioningConfigurationProperty.builder()
.maxVersions(123)
.unlimited(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataset.VersioningConfigurationPropertystatic final classAn implementation forCfnDataset.VersioningConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxVersions
How many versions of dataset contents are kept.The
unlimitedparameter must befalse. -
getUnlimited
If true, unlimited versions of dataset contents are kept. -
builder
-