Setting up a crawler for Amazon S3 event notifications for an Amazon S3 target - Amazon Glue
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Setting up a crawler for Amazon S3 event notifications for an Amazon S3 target

Follow these steps to set up a crawler for Amazon S3 event notifications for an Amazon S3 target using the Amazon Web Services Management Console or Amazon CLI.

Amazon Web Services Management Console
  1. Sign in to the Amazon Web Services Management Console and open the GuardDuty console at https://console.amazonaws.cn/guardduty/.

  2. Set your crawler properties. For more information, see Setting Crawler Configuration Options on the Amazon Glue console .

  3. In the section Data source configuration, you are asked Is your data already mapped to Amazon Glue tables?

    By default Not yet is already selected. Leave this as the default as you are using an Amazon S3 data source and the data is not already mapped to Amazon Glue tables.

  4. In the section Data sources, choose Add a data source.

  5. In the Add data source modal, configure the Amazon S3 data source:

    • Data source: By default, Amazon S3 is selected.

    • Network connection (Optional): Choose Add new connection.

    • Location of Amazon S3 data: By default, In this account is selected.

    • Amazon S3 path: Specify the Amazon S3 path where folders and files are crawled.

    • Subsequent crawler runs: Choose Crawl based on events to use Amazon S3 event notifications for your crawler.

    • Include SQS ARN: Specify the data store parameters including the a valid SQS ARN. (For example, arn:aws:sqs:region:account:sqs).

    • Include dead-letter SQS ARN (Optional): Specify a valid Amazon dead-letter SQS ARN. (For example, arn:aws:sqs:region:account:deadLetterQueue).

    • Choose Add an Amazon S3 data source.

Amazon CLI

The following is an example Amazon S3 Amazon CLI call to configure a crawler to use event notifications to crawl an Amazon S3 target bucket.

Create Crawler: aws glue update-crawler \ --name myCrawler \ --recrawl-policy RecrawlBehavior=CRAWL_EVENT_MODE \ --schema-change-policy UpdateBehavior=UPDATE_IN_DATABASE,DeleteBehavior=LOG --targets '{"S3Targets":[{"Path":"s3://amzn-s3-demo-bucket/", "EventQueueArn": "arn:aws:sqs:us-east-1:012345678910:MyQueue"}]}'