Put Workflow Run Properties
| glue_put_workflow_run_properties | R Documentation | 
Puts the specified workflow run properties for the given workflow run¶
Description¶
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.
Usage¶
glue_put_workflow_run_properties(Name, RunId, RunProperties)
Arguments¶
Name | 
[required] Name of the workflow which was run.  | 
RunId | 
[required] The ID of the workflow run for which the run properties should be updated.  | 
RunProperties | 
[required] The properties to put for the specified run. Run properties may be logged. Do not pass plaintext secrets as properties. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to use them within the workflow run.  | 
Value¶
An empty list.
Request syntax¶
svc$put_workflow_run_properties(
  Name = "string",
  RunId = "string",
  RunProperties = list(
    "string"
  )
)