interface CfnSchemaVersionMetadataMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnSchemaVersionMetadataMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnSchemaVersionMetadataMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnSchemaVersionMetadataMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnSchemaVersionMetadataMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const cfnSchemaVersionMetadataMixinProps: glue.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 | ISchema | 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 | ISchema
(optional)
The version number of the schema.
value?
Type:
string
(optional)
A metadata key's corresponding value.

.NET
Go
Java
Python
TypeScript