Interface CfnSchemaVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSchemaVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:31.938Z")
@Stability(Stable)
public interface CfnSchemaVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSchemaVersion
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.glue.*; CfnSchemaVersionProps cfnSchemaVersionProps = CfnSchemaVersionProps.builder() .schema(SchemaProperty.builder() .registryName("registryName") .schemaArn("schemaArn") .schemaName("schemaName") .build()) .schemaDefinition("schemaDefinition") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSchemaVersionProps
static final class
An implementation forCfnSchemaVersionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The schema that includes the schema version.The schema definition for the schema version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSchema
The schema that includes the schema version.- See Also:
-
getSchemaDefinition
The schema definition for the schema version.- See Also:
-
builder
- Returns:
- a
CfnSchemaVersionProps.Builder
ofCfnSchemaVersionProps
-