interface SchemaVersionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnSchemaPropsMixin.SchemaVersionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnSchemaPropsMixin_SchemaVersionProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnSchemaPropsMixin.SchemaVersionProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnSchemaPropsMixin.SchemaVersionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnSchemaPropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const schemaVersionProperty: glue_mixins.CfnSchemaPropsMixin.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.

.NET
Go
Java
Python
TypeScript