@Stability(value=Stable)
public static interface CfnPartition.SchemaReferenceProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPartition.SchemaReferenceProperty.Builder
A builder for
CfnPartition.SchemaReferenceProperty |
static class |
CfnPartition.SchemaReferenceProperty.Jsii$Proxy
An implementation for
CfnPartition.SchemaReferenceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPartition.SchemaReferenceProperty.Builder |
builder() |
default Object |
getSchemaId()
A structure that contains schema identity fields.
|
default String |
getSchemaVersionId()
The unique ID assigned to a version of the schema.
|
default Number |
getSchemaVersionNumber()
The version number of the schema.
|
@Stability(value=Stable) @Nullable default Object getSchemaId()
Either this or the SchemaVersionId has to be
provided.
@Stability(value=Stable) @Nullable default String getSchemaVersionId()
Either this or the SchemaId has to be provided.
@Stability(value=Stable) @Nullable default Number getSchemaVersionNumber()
@Stability(value=Stable) static CfnPartition.SchemaReferenceProperty.Builder builder()
Copyright © 2022. All rights reserved.