Method: Aws::Glue::Types::GetCatalogsRequest#include_root

Defined in:
lib/aws-sdk-glue/types.rb

#include_rootBoolean

Whether to list the default catalog in the account and region in the response. Defaults to ‘false`. When `true` and `ParentCatalogId = NULL | Amazon Web Services Account ID`, all catalogs and the default catalog are enumerated in the response.

When the ‘ParentCatalogId` is not equal to null, and this attribute is passed as `false` or `true`, an `InvalidInputException` is thrown.

Returns:

  • (Boolean)


11768
11769
11770
11771
11772
11773
11774
11775
11776
# File 'lib/aws-sdk-glue/types.rb', line 11768

class GetCatalogsRequest < Struct.new(
  :parent_catalog_id,
  :next_token,
  :max_results,
  :recursive,
  :include_root)
  SENSITIVE = []
  include Aws::Structure
end