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.
20344 20345 20346 20347 20348 20349 20350 |
# File 'lib/aws-sdk-glue/types.rb', line 20344 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.
20344 20345 20346 20347 20348 20349 20350 |
# File 'lib/aws-sdk-glue/types.rb', line 20344 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.
20344 20345 20346 20347 20348 20349 20350 |
# File 'lib/aws-sdk-glue/types.rb', line 20344 class SchemaReference < Struct.new( :schema_id, :schema_version_id, :schema_version_number) SENSITIVE = [] include Aws::Structure end |