You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::CrawlerTargets

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CrawlerTargets as input to an Aws::Client method, you can use a vanilla Hash:

{
  s3_targets: [
    {
      path: "Path",
      exclusions: ["Path"],
      connection_name: "ConnectionName",
    },
  ],
  jdbc_targets: [
    {
      connection_name: "ConnectionName",
      path: "Path",
      exclusions: ["Path"],
    },
  ],
  mongo_db_targets: [
    {
      connection_name: "ConnectionName",
      path: "Path",
      scan_all: false,
    },
  ],
  dynamo_db_targets: [
    {
      path: "Path",
      scan_all: false,
      scan_rate: 1.0,
    },
  ],
  catalog_targets: [
    {
      database_name: "NameString", # required
      tables: ["NameString"], # required
    },
  ],
}

Specifies data stores to crawl.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#catalog_targetsArray<Types::CatalogTarget>

Specifies AWS Glue Data Catalog targets.

Returns:

#dynamo_db_targetsArray<Types::DynamoDBTarget>

Specifies Amazon DynamoDB targets.

Returns:

#jdbc_targetsArray<Types::JdbcTarget>

Specifies JDBC targets.

Returns:

#mongo_db_targetsArray<Types::MongoDBTarget>

Specifies Amazon DocumentDB or MongoDB targets.

Returns:

#s3_targetsArray<Types::S3Target>

Specifies Amazon Simple Storage Service (Amazon S3) targets.

Returns:

  • (Array<Types::S3Target>)

    Specifies Amazon Simple Storage Service (Amazon S3) targets.