interface CfnSchemaVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnSchemaVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnSchemaVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnSchemaVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnSchemaVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnSchemaVersionMixinProps |
Properties for CfnSchemaVersionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schemaversion.html
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 cfnSchemaVersionMixinProps: glue_mixins.CfnSchemaVersionMixinProps = {
schema: {
registryName: 'registryName',
schemaArn: 'schemaArn',
schemaName: 'schemaName',
},
schemaDefinition: 'schemaDefinition',
};
Properties
| Name | Type | Description |
|---|---|---|
| schema? | IResolvable | Schema | The schema that includes the schema version. |
| schema | string | The schema definition for the schema version. |
schema?
Type:
IResolvable | Schema
(optional)
The schema that includes the schema version.
schemaDefinition?
Type:
string
(optional)
The schema definition for the schema version.

.NET
Go
Java
Python
TypeScript