Class: Aws::Glue::Types::DeleteSchemaVersionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DeleteSchemaVersionsInput
- Defined in:
- gems/aws-sdk-glue/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).
8770 8771 8772 8773 8774 8775 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 8770 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
8770 8771 8772 8773 8774 8775 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 8770 class DeleteSchemaVersionsInput < Struct.new( :schema_id, :versions) SENSITIVE = [] include Aws::Structure end |