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();
 

See Also: