Class: Aws::Glue::Types::DeletePartitionIndexRequest

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 DeletePartitionIndexRequest data as a hash:

{
  catalog_id: "CatalogIdString",
  database_name: "NameString", # required
  table_name: "NameString", # required
  index_name: "NameString", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#catalog_idString

The catalog ID where the table resides.

Returns:

  • (String)


5412
5413
5414
5415
5416
5417
5418
5419
# File 'lib/aws-sdk-glue/types.rb', line 5412

class DeletePartitionIndexRequest < Struct.new(
  :catalog_id,
  :database_name,
  :table_name,
  :index_name)
  SENSITIVE = []
  include Aws::Structure
end

#database_nameString

Specifies the name of a database from which you want to delete a partition index.

Returns:

  • (String)


5412
5413
5414
5415
5416
5417
5418
5419
# File 'lib/aws-sdk-glue/types.rb', line 5412

class DeletePartitionIndexRequest < Struct.new(
  :catalog_id,
  :database_name,
  :table_name,
  :index_name)
  SENSITIVE = []
  include Aws::Structure
end

#index_nameString

The name of the partition index to be deleted.

Returns:

  • (String)


5412
5413
5414
5415
5416
5417
5418
5419
# File 'lib/aws-sdk-glue/types.rb', line 5412

class DeletePartitionIndexRequest < Struct.new(
  :catalog_id,
  :database_name,
  :table_name,
  :index_name)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

Specifies the name of a table from which you want to delete a partition index.

Returns:

  • (String)


5412
5413
5414
5415
5416
5417
5418
5419
# File 'lib/aws-sdk-glue/types.rb', line 5412

class DeletePartitionIndexRequest < Struct.new(
  :catalog_id,
  :database_name,
  :table_name,
  :index_name)
  SENSITIVE = []
  include Aws::Structure
end