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

Class: Aws::SWF::Types::PollForActivityTaskInput

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

Overview

Note:

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

{
  domain: "DomainName", # required
  task_list: { # required
    name: "Name", # required
  },
  identity: "Identity",
}

Instance Attribute Summary collapse

Instance Attribute Details

#domainString

The name of the domain that contains the task lists being polled.

Returns:

  • (String)

    The name of the domain that contains the task lists being polled.

#identityString

Identity of the worker making the request, recorded in the ActivityTaskStarted event in the workflow history. This enables diagnostic tracing when problems arise. The form of this identity is user defined.

Returns:

  • (String)

    Identity of the worker making the request, recorded in the ActivityTaskStarted event in the workflow history.

#task_listTypes::TaskList

Specifies the task list to poll for activity tasks.

The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.

Returns:

  • (Types::TaskList)

    Specifies the task list to poll for activity tasks.