CfnSchemaVersionMixinProps

class aws_cdk.mixins_preview.aws_glue.mixins.CfnSchemaVersionMixinProps(*, schema=None, schema_definition=None)

Bases: object

Properties for CfnSchemaVersionPropsMixin.

Parameters:
  • schema (Union[IResolvable, SchemaProperty, Dict[str, Any], None]) – The schema that includes the schema version.

  • schema_definition (Optional[str]) – The schema definition for the schema version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schemaversion.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_glue import mixins as glue_mixins

cfn_schema_version_mixin_props = glue_mixins.CfnSchemaVersionMixinProps(
    schema=glue_mixins.CfnSchemaVersionPropsMixin.SchemaProperty(
        registry_name="registryName",
        schema_arn="schemaArn",
        schema_name="schemaName"
    ),
    schema_definition="schemaDefinition"
)

Attributes

schema

The schema that includes the schema version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schemaversion.html#cfn-glue-schemaversion-schema

schema_definition

The schema definition for the schema version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schemaversion.html#cfn-glue-schemaversion-schemadefinition