Class: Aws::Glue::Types::GetSchemaInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::GetSchemaInput
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass GetSchemaInput data as a hash:
{
schema_id: { # required
schema_arn: "GlueResourceArn",
schema_name: "SchemaRegistryNameString",
registry_name: "SchemaRegistryNameString",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#schema_id ⇒ Types::SchemaId
This is a wrapper structure to contain schema identity fields.
Instance Attribute Details
#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
orSchemaName
andRegistryName
has to be provided.SchemaId$SchemaName: The name of the schema. Either
SchemaArn
orSchemaName
andRegistryName
has to be provided.
12384 12385 12386 12387 12388 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 12384 class GetSchemaInput < Struct.new( :schema_id) SENSITIVE = [] include Aws::Structure end |