Module Values_1.CreateCrawlerRequestSource

Creates a new crawler with specified targets, role, configuration, and optional schedule. At least one crawl target must be specified, in the s3Targets field, the jdbcTargets field, or the DynamoDBTargets field.

Sourcetype nonrec t = {
  1. name : Values_0.NameString.t;
    (*

    Name of the new crawler.

    *)
  2. role : Values_0.Role.t;
    (*

    The IAM role or Amazon Resource Name (ARN) of an IAM role used by the new crawler to access customer resources.

    *)
  3. databaseName : Values_0.DatabaseName.t option;
    (*

    The Glue database where results are written, such as: arn:aws:daylight:us-east-1::database/sometable/*.

    *)
  4. description : Values_0.DescriptionString.t option;
    (*

    A description of the new crawler.

    *)
  5. targets : Values_0.CrawlerTargets.t;
    (*

    A list of collection of targets to crawl.

    *)
  6. schedule : Values_0.CronExpression.t option;
    (*

    A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).

    *)
  7. classifiers : Values_0.ClassifierNameList.t option;
    (*

    A list of custom classifiers that the user has registered. By default, all built-in classifiers are included in a crawl, but these custom classifiers always override the default classifiers for a given classification.

    *)
  8. tablePrefix : Values_0.TablePrefix.t option;
    (*

    The table prefix used for catalog tables that are created.

    *)
  9. schemaChangePolicy : Values_0.SchemaChangePolicy.t option;
    (*

    The policy for the crawler's update and deletion behavior.

    *)
  10. recrawlPolicy : Values_0.RecrawlPolicy.t option;
    (*

    A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

    *)
  11. lineageConfiguration : Values_0.LineageConfiguration.t option;
    (*

    Specifies data lineage configuration settings for the crawler.

    *)
  12. lakeFormationConfiguration : Values_0.LakeFormationConfiguration.t option;
    (*

    Specifies Lake Formation configuration settings for the crawler.

    *)
  13. configuration : Values_0.CrawlerConfiguration.t option;
    (*

    Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Setting crawler configuration options.

    *)
  14. crawlerSecurityConfiguration : Values_0.CrawlerSecurityConfiguration.t option;
    (*

    The name of the SecurityConfiguration structure to be used by this crawler.

    *)
  15. tags : TagsMap.t option;
    (*

    The tags to use with this crawler request. You may use tags to limit access to the crawler. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?databaseName:??? -> ?description:??? -> ?schedule:??? -> ?classifiers:??? -> ?tablePrefix:??? -> ?schemaChangePolicy:??? -> ?recrawlPolicy:??? -> ?lineageConfiguration:??? -> ?lakeFormationConfiguration:??? -> ?configuration:??? -> ?crawlerSecurityConfiguration:??? -> ?tags:??? -> name:Values_0.NameString.t -> role:Values_0.Role.t -> targets:Values_0.CrawlerTargets.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Values_0.NameString.t | `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `Structure of (string * [> `Boolean of bool | `Double of float | `Integer of int | `List of [> `Enum of string | `String of string ] list | `String of string ]) list ] list | `String of string ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t