Interface CfnSchemaVersion.SchemaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSchemaVersion.SchemaProperty.Jsii$Proxy
- Enclosing class:
CfnSchemaVersion
@Stability(Stable)
public static interface CfnSchemaVersion.SchemaProperty
extends software.amazon.jsii.JsiiSerializable
A wrapper structure to contain schema identity fields.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSchemaVersion.SchemaProperty
static final class
An implementation forCfnSchemaVersion.SchemaProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegistryName
The name of the registry where the schema is stored.Either
SchemaArn
, orSchemaName
andRegistryName
has to be provided.- See Also:
-
getSchemaArn
The Amazon Resource Name (ARN) of the schema.Either
SchemaArn
, orSchemaName
andRegistryName
has to be provided.- See Also:
-
getSchemaName
The name of the schema.Either
SchemaArn
, orSchemaName
andRegistryName
has to be provided.- See Also:
-
builder
-