You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::PutWorkflowRunPropertiesRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PutWorkflowRunPropertiesRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "NameString", # required
  run_id: "IdString", # required
  run_properties: { # required
    "IdString" => "GenericString",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Name of the workflow which was run.

Returns:

  • (String)

    Name of the workflow which was run.

#run_idString

The ID of the workflow run for which the run properties should be updated.

Returns:

  • (String)

    The ID of the workflow run for which the run properties should be updated.

#run_propertiesHash<String,String>

The properties to put for the specified run.

Returns:

  • (Hash<String,String>)

    The properties to put for the specified run.