Skip to main content

workflow_run_properties

Creates, updates, deletes, gets or lists a workflow_run_properties resource.

Overview

Nameworkflow_run_properties
TypeResource
Idaws.glue.workflow_run_properties

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
run_propertiesobjectThe workflow run properties which were set during the specified run.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_workflow_run_propertiesselectregionRetrieves the workflow run properties which were set during the run.
put_workflow_run_propertiesreplaceregion, Name, RunId, RunPropertiesPuts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the workflow run properties which were set during the run.

SELECT
run_properties
FROM aws.glue.workflow_run_properties
WHERE region = '{{ region }}' -- required
;

REPLACE examples

Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.

REPLACE aws.glue.workflow_run_properties
SET
Name = '{{ Name }}',
RunId = '{{ RunId }}',
RunProperties = '{{ RunProperties }}'
WHERE
region = '{{ region }}' --required
AND Name = '{{ Name }}' --required
AND RunId = '{{ RunId }}' --required
AND RunProperties = '{{ RunProperties }}' --required;