interface CfnSchemaVersionMetadataMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnSchemaVersionMetadataMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnSchemaVersionMetadataMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnSchemaVersionMetadataMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnSchemaVersionMetadataMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnSchemaVersionMetadataMixinProps |
Properties for CfnSchemaVersionMetadataPropsMixin.
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 cfnSchemaVersionMetadataMixinProps: glue_mixins.CfnSchemaVersionMetadataMixinProps = {
key: 'key',
schemaVersionId: 'schemaVersionId',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | A metadata key in a key-value pair for metadata. |
| schema | string | The version number of the schema. |
| value? | string | A metadata key's corresponding value. |
key?
Type:
string
(optional)
A metadata key in a key-value pair for metadata.
schemaVersionId?
Type:
string
(optional)
The version number of the schema.
value?
Type:
string
(optional)
A metadata key's corresponding value.

.NET
Go
Java
Python
TypeScript