Interface CfnPartition.SchemaIdProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartition.SchemaIdProperty.Jsii$Proxy
- Enclosing class:
CfnPartition
@Stability(Stable)
public static interface CfnPartition.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPartition.SchemaIdProperty
static final class
An implementation forCfnPartition.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
SchemaArn
orSchemaName
has to be provided. -
getSchemaName
The name of the schema.One of
SchemaArn
orSchemaName
has to be provided. -
builder
-