public static interface CfnTrigger.ActionProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTrigger.ActionProperty.Builder
A builder for
CfnTrigger.ActionProperty |
static class |
CfnTrigger.ActionProperty.Jsii$Proxy
An implementation for
CfnTrigger.ActionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTrigger.ActionProperty.Builder |
builder() |
default java.lang.Object |
getArguments()
The job arguments used when this trigger fires.
|
default java.lang.String |
getCrawlerName()
The name of the crawler to be used with this action.
|
default java.lang.String |
getJobName()
The name of a job to be executed.
|
default java.lang.Object |
getNotificationProperty()
Specifies configuration properties of a job run notification.
|
default java.lang.String |
getSecurityConfiguration()
The name of the `SecurityConfiguration` structure to be used with this action.
|
default java.lang.Number |
getTimeout()
The `JobRun` timeout in minutes.
|
default java.lang.Object getArguments()
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.
default java.lang.String getCrawlerName()
default java.lang.String getJobName()
default java.lang.Object getNotificationProperty()
default java.lang.String getSecurityConfiguration()
default java.lang.Number getTimeout()
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.
static CfnTrigger.ActionProperty.Builder builder()
CfnTrigger.ActionProperty.Builder
of CfnTrigger.ActionProperty