Interface CfnTrigger.ActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrigger.ActionProperty.Jsii$Proxy
- Enclosing class:
CfnTrigger
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.glue.*; Object arguments_; ActionProperty actionProperty = ActionProperty.builder() .arguments(arguments_) .crawlerName("crawlerName") .jobName("jobName") .notificationProperty(NotificationPropertyProperty.builder() .notifyDelayAfter(123) .build()) .securityConfiguration("securityConfiguration") .timeout(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTrigger.ActionProperty
static final class
An implementation forCfnTrigger.ActionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The job arguments used when this trigger fires.default String
The name of the crawler to be used with this action.default String
The name of a job to be executed.default Object
Specifies configuration properties of a job run notification.default String
The name of theSecurityConfiguration
structure to be used with this action.default Number
TheJobRun
timeout in minutes.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArguments
The job arguments used when this trigger fires.For this job run, they replace the default arguments set in the job definition itself.
You can specify arguments here that your own job-execution script consumes, in addition to arguments that AWS Glue itself consumes.
For information about how to specify and consume your own job arguments, see Calling AWS Glue APIs in Python in the AWS Glue Developer Guide .
For information about the key-value pairs that AWS Glue consumes to set up your job, see the Special Parameters Used by AWS Glue topic in the developer guide.
- See Also:
-
getCrawlerName
The name of the crawler to be used with this action.- See Also:
-
getJobName
The name of a job to be executed.- See Also:
-
getNotificationProperty
Specifies configuration properties of a job run notification.- See Also:
-
getSecurityConfiguration
The name of theSecurityConfiguration
structure to be used with this action.- See Also:
-
getTimeout
TheJobRun
timeout in minutes.This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
- See Also:
-
builder
- Returns:
- a
CfnTrigger.ActionProperty.Builder
ofCfnTrigger.ActionProperty
-