Action
public struct Action : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
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, as well as arguments that AWS Glue itself consumes. For information about how to specify and consume your own Job arguments, see the Calling AWS Glue APIs in Python topic in the 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.
Declaration
Swift
public let arguments: [String : String]?
-
The name of the crawler to be used with this action.
Declaration
Swift
public let crawlerName: String?
-
The name of a job to be executed.
Declaration
Swift
public let jobName: String?
-
Specifies configuration properties of a job run notification.
Declaration
Swift
public let notificationProperty: NotificationProperty?
-
The name of the SecurityConfiguration structure to be used with this action.
Declaration
Swift
public let securityConfiguration: String?
-
The JobRun 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.
Declaration
Swift
public let timeout: Int?
-
Undocumented
Declaration
Swift
public init(arguments: [String : String]? = nil, crawlerName: String? = nil, jobName: String? = nil, notificationProperty: NotificationProperty? = nil, securityConfiguration: String? = nil, timeout: Int? = nil)
-
Declaration
Swift
public func validate(name: String) throws