Interface CfnSchema.SchemaVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSchema.SchemaVersionProperty.Jsii$Proxy
- Enclosing class:
- CfnSchema
@Stability(Stable)
public static interface CfnSchema.SchemaVersionProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the version of a schema.
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.glue.*;
SchemaVersionProperty schemaVersionProperty = SchemaVersionProperty.builder()
.isLatest(false)
.versionNumber(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSchema.SchemaVersionPropertystatic final classAn implementation forCfnSchema.SchemaVersionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIsLatest
Indicates if this version is the latest version of the schema. -
getVersionNumber
The version number of the schema. -
builder
-