@Stability(value=Stable)
public static interface CfnSchemaVersion.SchemaProperty
extends software.amazon.jsii.JsiiSerializable
Either SchemaArn , or SchemaName and RegistryName 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.*;
SchemaProperty schemaProperty = SchemaProperty.builder()
.registryName("registryName")
.schemaArn("schemaArn")
.schemaName("schemaName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSchemaVersion.SchemaProperty.Builder
A builder for
CfnSchemaVersion.SchemaProperty |
static class |
CfnSchemaVersion.SchemaProperty.Jsii$Proxy
An implementation for
CfnSchemaVersion.SchemaProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnSchemaVersion.SchemaProperty.Builder |
builder() |
default String |
getRegistryName()
The name of the registry where the schema is stored.
|
default String |
getSchemaArn()
The Amazon Resource Name (ARN) of the schema.
|
default String |
getSchemaName()
The name of the schema.
|
@Stability(value=Stable) @Nullable default String getRegistryName()
Either SchemaArn , or SchemaName and RegistryName has to be provided.
@Stability(value=Stable) @Nullable default String getSchemaArn()
Either SchemaArn , or SchemaName and RegistryName has to be provided.
@Stability(value=Stable) @Nullable default String getSchemaName()
Either SchemaArn , or SchemaName and RegistryName has to be provided.
@Stability(value=Stable) static CfnSchemaVersion.SchemaProperty.Builder builder()
Copyright © 2022. All rights reserved.