Class: Aws::Glue::Types::RegisterSchemaVersionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::RegisterSchemaVersionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass RegisterSchemaVersionInput data as a hash:
{
schema_id: { # required
schema_arn: "GlueResourceArn",
schema_name: "SchemaRegistryNameString",
registry_name: "SchemaRegistryNameString",
},
schema_definition: "SchemaDefinitionString", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#schema_definition ⇒ String
The schema definition using the ‘DataFormat` setting for the `SchemaName`.
-
#schema_id ⇒ Types::SchemaId
This is a wrapper structure to contain schema identity fields.
Instance Attribute Details
#schema_definition ⇒ String
The schema definition using the ‘DataFormat` setting for the `SchemaName`.
12678 12679 12680 12681 12682 12683 |
# File 'lib/aws-sdk-glue/types.rb', line 12678 class RegisterSchemaVersionInput < Struct.new( :schema_id, :schema_definition) SENSITIVE = [] include Aws::Structure end |
#schema_id ⇒ Types::SchemaId
This is a wrapper structure to contain schema identity fields. The structure contains:
-
SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either ‘SchemaArn` or `SchemaName` and `RegistryName` has to be provided.
-
SchemaId$SchemaName: The name of the schema. Either ‘SchemaArn` or `SchemaName` and `RegistryName` has to be provided.
12678 12679 12680 12681 12682 12683 |
# File 'lib/aws-sdk-glue/types.rb', line 12678 class RegisterSchemaVersionInput < Struct.new( :schema_id, :schema_definition) SENSITIVE = [] include Aws::Structure end |