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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSchema.SchemaVersionProperty
static final class
An 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.- See Also:
-
getVersionNumber
The version number of the schema.- See Also:
-
builder
-