Interface CfnSchemaVersionPropsMixin.SchemaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSchemaVersionPropsMixin.SchemaProperty.Jsii$Proxy
- Enclosing class:
CfnSchemaVersionPropsMixin
@Stability(Stable)
public static interface CfnSchemaVersionPropsMixin.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.cfnpropertymixins.services.glue.*;
SchemaProperty schemaProperty = SchemaProperty.builder()
.registryName("registryName")
.schemaArn("schemaArn")
.schemaName("schemaName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSchemaVersionPropsMixin.SchemaPropertystatic final classAn implementation forCfnSchemaVersionPropsMixin.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, orSchemaNameandRegistryNamehas to be provided.- See Also:
-
getSchemaArn
The Amazon Resource Name (ARN) of the schema.Either
SchemaArn, orSchemaNameandRegistryNamehas to be provided.Returns union: either
StringorISchemaRef- See Also:
-
getSchemaName
The name of the schema.Either
SchemaArn, orSchemaNameandRegistryNamehas to be provided.- See Also:
-
builder
-