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