Interface CfnTable.SchemaIdProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.SchemaIdProperty.Jsii$Proxy
- Enclosing class:
- CfnTable
@Stability(Stable)
public static interface CfnTable.SchemaIdProperty
extends software.amazon.jsii.JsiiSerializable
A structure that contains schema identity fields.
Either this or the SchemaVersionId has to be
provided.
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.*;
SchemaIdProperty schemaIdProperty = SchemaIdProperty.builder()
.registryName("registryName")
.schemaArn("schemaArn")
.schemaName("schemaName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.SchemaIdPropertystatic final classAn implementation forCfnTable.SchemaIdProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegistryName
The name of the schema registry that contains the schema. -
getSchemaArn
The Amazon Resource Name (ARN) of the schema.One of
SchemaArnorSchemaNamehas to be provided. -
getSchemaName
The name of the schema.One of
SchemaArnorSchemaNamehas to be provided. -
builder
- Returns:
- a
CfnTable.SchemaIdProperty.BuilderofCfnTable.SchemaIdProperty
-