interface SchemaVersionProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSchema.SchemaVersionProperty |
Java | software.amazon.awscdk.services.glue.CfnSchema.SchemaVersionProperty |
Python | aws_cdk.aws_glue.CfnSchema.SchemaVersionProperty |
TypeScript | @aws-cdk/aws-glue » CfnSchema » SchemaVersionProperty |
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 * as glue from '@aws-cdk/aws-glue';
const schemaVersionProperty: glue.CfnSchema.SchemaVersionProperty = {
isLatest: false,
versionNumber: 123,
};
Properties
Name | Type | Description |
---|---|---|
is | boolean | IResolvable | Indicates if this version is the latest version of the schema. |
version | number | The version number of the schema. |
isLatest?
Type:
boolean |
IResolvable
(optional)
Indicates if this version is the latest version of the schema.
versionNumber?
Type:
number
(optional)
The version number of the schema.