PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::Glue::CreateCrawler; use Moose; has Classifiers => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has Configuration => (is => 'ro', isa => 'Str'); has CrawlerSecurityConfiguration => (is => 'ro', isa => 'Str'); has DatabaseName => (is => 'ro', isa => 'Str'); has Description => (is => 'ro', isa => 'Str'); has LineageConfiguration => (is => 'ro', isa => 'Paws::Glue::LineageConfiguration'); has Name => (is => 'ro', isa => 'Str', required => 1); has RecrawlPolicy => (is => 'ro', isa => 'Paws::Glue::RecrawlPolicy'); has Role => (is => 'ro', isa => 'Str', required => 1); has Schedule => (is => 'ro', isa => 'Str'); has SchemaChangePolicy => (is => 'ro', isa => 'Paws::Glue::SchemaChangePolicy'); has TablePrefix => (is => 'ro', isa => 'Str'); has Tags => (is => 'ro', isa => 'Paws::Glue::TagsMap'); has Targets => (is => 'ro', isa => 'Paws::Glue::CrawlerTargets', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateCrawler'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Glue::CreateCrawlerResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::Glue::CreateCrawler - Arguments for method CreateCrawler on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateCrawler on the L service. Use the attributes of this class as arguments to method CreateCrawler. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateCrawler. =head1 SYNOPSIS my $glue = Paws->service('Glue'); my $CreateCrawlerResponse = $glue->CreateCrawler( Name => 'MyNameString', Role => 'MyRole', Targets => { CatalogTargets => [ { DatabaseName => 'MyNameString', # min: 1, max: 255 Tables => [ 'MyNameString', ... # min: 1, max: 255 ], # min: 1 }, ... ], # OPTIONAL DynamoDBTargets => [ { Path => 'MyPath', # OPTIONAL ScanAll => 1, # OPTIONAL ScanRate => 1, # OPTIONAL }, ... ], # OPTIONAL JdbcTargets => [ { ConnectionName => 'MyConnectionName', # OPTIONAL Exclusions => [ 'MyPath', ... # OPTIONAL ], # OPTIONAL Path => 'MyPath', # OPTIONAL }, ... ], # OPTIONAL MongoDBTargets => [ { ConnectionName => 'MyConnectionName', # OPTIONAL Path => 'MyPath', # OPTIONAL ScanAll => 1, # OPTIONAL }, ... ], # OPTIONAL S3Targets => [ { ConnectionName => 'MyConnectionName', # OPTIONAL Exclusions => [ 'MyPath', ... # OPTIONAL ], # OPTIONAL Path => 'MyPath', # OPTIONAL SampleSize => 1, # OPTIONAL }, ... ], # OPTIONAL }, Classifiers => [ 'MyNameString', ... # min: 1, max: 255 ], # OPTIONAL Configuration => 'MyCrawlerConfiguration', # OPTIONAL CrawlerSecurityConfiguration => 'MyCrawlerSecurityConfiguration', # OPTIONAL DatabaseName => 'MyDatabaseName', # OPTIONAL Description => 'MyDescriptionString', # OPTIONAL LineageConfiguration => { CrawlerLineageSettings => 'ENABLE', # values: ENABLE, DISABLE; OPTIONAL }, # OPTIONAL RecrawlPolicy => { RecrawlBehavior => 'CRAWL_EVERYTHING' , # values: CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY; OPTIONAL }, # OPTIONAL Schedule => 'MyCronExpression', # OPTIONAL SchemaChangePolicy => { DeleteBehavior => 'LOG' , # values: LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE; OPTIONAL UpdateBehavior => 'LOG', # values: LOG, UPDATE_IN_DATABASE; OPTIONAL }, # OPTIONAL TablePrefix => 'MyTablePrefix', # OPTIONAL Tags => { 'MyTagKey' => 'MyTagValue', # key: min: 1, max: 128, value: max: 256 }, # OPTIONAL ); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 Classifiers => ArrayRef[Str|Undef] 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. =head2 Configuration => Str Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler (https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html). =head2 CrawlerSecurityConfiguration => Str The name of the C structure to be used by this crawler. =head2 DatabaseName => Str The Glue database where results are written, such as: C. =head2 Description => Str A description of the new crawler. =head2 LineageConfiguration => L Specifies data lineage configuration settings for the crawler. =head2 B Name => Str Name of the new crawler. =head2 RecrawlPolicy => L A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run. =head2 B Role => Str The IAM role or Amazon Resource Name (ARN) of an IAM role used by the new crawler to access customer resources. =head2 Schedule => Str A C expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers (https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html). For example, to run something every day at 12:15 UTC, you would specify: C. =head2 SchemaChangePolicy => L The policy for the crawler's update and deletion behavior. =head2 TablePrefix => Str The table prefix used for catalog tables that are created. =head2 Tags => L 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 (https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html) in the developer guide. =head2 B Targets => L A list of collection of targets to crawl. =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateCrawler in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut