Method: Aws::Glue::Types::Crawler#state
- Defined in:
- lib/aws-sdk-glue/types.rb
#state ⇒ String
Indicates whether the crawler is running, or whether a run is pending.
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 |
# File 'lib/aws-sdk-glue/types.rb', line 2348 class Crawler < Struct.new( :name, :role, :targets, :database_name, :description, :classifiers, :recrawl_policy, :schema_change_policy, :lineage_configuration, :state, :table_prefix, :schedule, :crawl_elapsed_time, :creation_time, :last_updated, :last_crawl, :version, :configuration, :crawler_security_configuration) SENSITIVE = [] include Aws::Structure end |