/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the glue-2017-03-31.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Glue.Model { /// /// When crawling an Amazon S3 data source after the first crawl is complete, specifies /// whether to crawl the entire dataset again or to crawl only folders that were added /// since the last crawler run. For more information, see Incremental /// Crawls in Glue in the developer guide. /// public partial class RecrawlPolicy { private RecrawlBehavior _recrawlBehavior; /// /// Gets and sets the property RecrawlBehavior. /// /// Specifies whether to crawl the entire dataset again or to crawl only folders that /// were added since the last crawler run. /// /// /// /// A value of CRAWL_EVERYTHING specifies crawling the entire dataset again. /// /// /// /// A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that /// were added since the last crawler run. /// /// /// /// A value of CRAWL_EVENT_MODE specifies crawling only the changes identified /// by Amazon S3 events. /// /// public RecrawlBehavior RecrawlBehavior { get { return this._recrawlBehavior; } set { this._recrawlBehavior = value; } } // Check to see if RecrawlBehavior property is set internal bool IsSetRecrawlBehavior() { return this._recrawlBehavior != null; } } }