Interface CfnTable.SchemaReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.SchemaReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnTable
@Stability(Stable)
public static interface CfnTable.SchemaReferenceProperty
extends software.amazon.jsii.JsiiSerializable
An object that references a schema stored in the AWS Glue Schema Registry.
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.*; SchemaReferenceProperty schemaReferenceProperty = SchemaReferenceProperty.builder() .schemaId(SchemaIdProperty.builder() .registryName("registryName") .schemaArn("schemaArn") .schemaName("schemaName") .build()) .schemaVersionId("schemaVersionId") .schemaVersionNumber(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTable.SchemaReferenceProperty
static final class
An implementation forCfnTable.SchemaReferenceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSchemaId
A structure that contains schema identity fields.Either this or the
SchemaVersionId
has to be provided.- See Also:
-
getSchemaVersionId
The unique ID assigned to a version of the schema.Either this or the
SchemaId
has to be provided.- See Also:
-
getSchemaVersionNumber
The version number of the schema.- See Also:
-
builder
-