Class: Aws::Glue::Types::GetSchemaByDefinitionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::GetSchemaByDefinitionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass GetSchemaByDefinitionInput 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 definition of the schema for which schema details are required.
-
#schema_id ⇒ Types::SchemaId
This is a wrapper structure to contain schema identity fields.
Instance Attribute Details
#schema_definition ⇒ String
The definition of the schema for which schema details are required.
8568 8569 8570 8571 8572 8573 |
# File 'lib/aws-sdk-glue/types.rb', line 8568 class GetSchemaByDefinitionInput < 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. One of ‘SchemaArn` or `SchemaName` has to be provided.
-
SchemaId$SchemaName: The name of the schema. One of ‘SchemaArn` or `SchemaName` has to be provided.
8568 8569 8570 8571 8572 8573 |
# File 'lib/aws-sdk-glue/types.rb', line 8568 class GetSchemaByDefinitionInput < Struct.new( :schema_id, :schema_definition) SENSITIVE = [] include Aws::Structure end |