Class: Aws::Glue::Types::GetPartitionIndexesRequest

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

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#catalog_idString

The catalog ID where the table resides.

Returns:

  • (String)


8012
8013
8014
8015
8016
8017
8018
8019
# File 'lib/aws-sdk-glue/types.rb', line 8012

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

#database_nameString

Specifies the name of a database from which you want to retrieve partition indexes.

Returns:

  • (String)


8012
8013
8014
8015
8016
8017
8018
8019
# File 'lib/aws-sdk-glue/types.rb', line 8012

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

#next_tokenString

A continuation token, included if this is a continuation call.

Returns:

  • (String)


8012
8013
8014
8015
8016
8017
8018
8019
# File 'lib/aws-sdk-glue/types.rb', line 8012

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

#table_nameString

Specifies the name of a table for which you want to retrieve the partition indexes.

Returns:

  • (String)


8012
8013
8014
8015
8016
8017
8018
8019
# File 'lib/aws-sdk-glue/types.rb', line 8012

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