Class: Aws::Glue::Types::SchemaReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::SchemaReference
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
An object that references a schema stored in the Glue Schema Registry.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#schema_id ⇒ Types::SchemaId
A structure that contains schema identity fields.
-
#schema_version_id ⇒ String
The unique ID assigned to a version of the schema.
-
#schema_version_number ⇒ Integer
The version number of the schema.
Instance Attribute Details
#schema_id ⇒ Types::SchemaId
A structure that contains schema identity fields. Either this or the ‘SchemaVersionId` has to be provided.
20186 20187 20188 20189 20190 20191 20192 |
# File 'lib/aws-sdk-glue/types.rb', line 20186 class SchemaReference < Struct.new( :schema_id, :schema_version_id, :schema_version_number) SENSITIVE = [] include Aws::Structure end |
#schema_version_id ⇒ String
The unique ID assigned to a version of the schema. Either this or the ‘SchemaId` has to be provided.
20186 20187 20188 20189 20190 20191 20192 |
# File 'lib/aws-sdk-glue/types.rb', line 20186 class SchemaReference < Struct.new( :schema_id, :schema_version_id, :schema_version_number) SENSITIVE = [] include Aws::Structure end |
#schema_version_number ⇒ Integer
The version number of the schema.
20186 20187 20188 20189 20190 20191 20192 |
# File 'lib/aws-sdk-glue/types.rb', line 20186 class SchemaReference < Struct.new( :schema_id, :schema_version_id, :schema_version_number) SENSITIVE = [] include Aws::Structure end |