Class: Aws::Glue::Types::DeleteSchemaVersionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DeleteSchemaVersionsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass DeleteSchemaVersionsInput data as a hash:
{
schema_id: { # required
schema_arn: "GlueResourceArn",
schema_name: "SchemaRegistryNameString",
registry_name: "SchemaRegistryNameString",
},
versions: "VersionsString", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#schema_id ⇒ Types::SchemaId
This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN).
-
#versions ⇒ String
A version range may be supplied which may be of the format:.
Instance Attribute Details
#schema_id ⇒ Types::SchemaId
This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN).
5617 5618 5619 5620 5621 5622 |
# File 'lib/aws-sdk-glue/types.rb', line 5617 class DeleteSchemaVersionsInput < Struct.new( :schema_id, :versions) SENSITIVE = [] include Aws::Structure end |
#versions ⇒ String
A version range may be supplied which may be of the format:
-
a single version number, 5
-
a range, 5-8 : deletes versions 5, 6, 7, 8
5617 5618 5619 5620 5621 5622 |
# File 'lib/aws-sdk-glue/types.rb', line 5617 class DeleteSchemaVersionsInput < Struct.new( :schema_id, :versions) SENSITIVE = [] include Aws::Structure end |