Interface IDailyScheduleTriggerOptions
(experimental) Properties for configuring a daily-scheduled Glue Trigger.
Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public interface IDailyScheduleTriggerOptions : ITriggerOptions
Syntax (vb)
Public Interface IDailyScheduleTriggerOptions Inherits ITriggerOptions
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue.Alpha;
using Amazon.CDK;
using Amazon.CDK.AWS.Glue;
CfnCrawler cfnCrawler;
Job job;
SecurityConfiguration securityConfiguration;
var dailyScheduleTriggerOptions = new DailyScheduleTriggerOptions {
Actions = new [] { new Action {
Arguments = new Dictionary<string, string> {
{ "argumentsKey", "arguments" }
},
Crawler = cfnCrawler,
Job = job,
SecurityConfiguration = securityConfiguration,
Timeout = Duration.Minutes(30)
} },
// the properties below are optional
Description = "description",
Name = "name",
StartOnCreation = false
};
Synopsis
Properties
| StartOnCreation | (experimental) Whether to start the trigger on creation or not. |
Properties
StartOnCreation
(experimental) Whether to start the trigger on creation or not.
bool? StartOnCreation { get; }
Property Value
bool?
Remarks
Default: - false
Stability: Experimental