Amazon Glue · Schema
Action
Defines an action to be initiated by a trigger.
AnalyticsData CatalogData IntegrationData PipelineETLServerless
Properties
| Name | Type | Description |
|---|---|---|
| JobName | object | |
| Arguments | object | |
| Timeout | object | |
| SecurityConfiguration | object | |
| NotificationProperty | object | |
| CrawlerName | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-action-schema.json",
"title": "Action",
"description": "Defines an action to be initiated by a trigger.",
"type": "object",
"properties": {
"JobName": {
"allOf": [
{
"$ref": "#/components/schemas/NameString"
},
{
"description": "The name of a job to be run."
}
]
},
"Arguments": {
"allOf": [
{
"$ref": "#/components/schemas/GenericMap"
},
{
"description": "<p>The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.</p> <p>You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.</p> <p>For information about how to specify and consume your own Job arguments, see the <a href=\"https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-python-calling.html\">Calling Glue APIs in Python</a> topic in the developer guide.</p> <p>For information about the key-value pairs that Glue consumes to set up your job, see the <a href=\"https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html\">Special Parameters Used by Glue</a> topic in the developer guide.</p>"
}
]
},
"Timeout": {
"allOf": [
{
"$ref": "#/components/schemas/Timeout"
},
{
"description": "The <code>JobRun</code> timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job."
}
]
},
"SecurityConfiguration": {
"allOf": [
{
"$ref": "#/components/schemas/NameString"
},
{
"description": "The name of the <code>SecurityConfiguration</code> structure to be used with this action."
}
]
},
"NotificationProperty": {
"allOf": [
{
"$ref": "#/components/schemas/NotificationProperty"
},
{
"description": "Specifies configuration properties of a job run notification."
}
]
},
"CrawlerName": {
"allOf": [
{
"$ref": "#/components/schemas/NameString"
},
{
"description": "The name of the crawler to be used with this action."
}
]
}
}
}