Class: Aws::Glue::Types::DeleteDatabaseRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass DeleteDatabaseRequest data as a hash:

{
  catalog_id: "CatalogIdString",
  name: "NameString", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#catalog_idString

The ID of the Data Catalog in which the database resides. If none is provided, the AWS account ID is used by default.

Returns:

  • (String)


5286
5287
5288
5289
5290
5291
# File 'lib/aws-sdk-glue/types.rb', line 5286

class DeleteDatabaseRequest < Struct.new(
  :catalog_id,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the database to delete. For Hive compatibility, this must be all lowercase.

Returns:

  • (String)


5286
5287
5288
5289
5290
5291
# File 'lib/aws-sdk-glue/types.rb', line 5286

class DeleteDatabaseRequest < Struct.new(
  :catalog_id,
  :name)
  SENSITIVE = []
  include Aws::Structure
end