Class: Aws::SWF::Types::PollForActivityTaskInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::PollForActivityTaskInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain that contains the task lists being polled.
-
#identity ⇒ String
Identity of the worker making the request, recorded in the ‘ActivityTaskStarted` event in the workflow history.
-
#task_list ⇒ Types::TaskList
Specifies the task list to poll for activity tasks.
Instance Attribute Details
#domain ⇒ String
The name of the domain that contains the task lists being polled.
3383 3384 3385 3386 3387 3388 3389 |
# File 'lib/aws-sdk-swf/types.rb', line 3383 class PollForActivityTaskInput < Struct.new( :domain, :task_list, :identity) SENSITIVE = [] include Aws::Structure end |
#identity ⇒ String
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.
3383 3384 3385 3386 3387 3388 3389 |
# File 'lib/aws-sdk-swf/types.rb', line 3383 class PollForActivityTaskInput < Struct.new( :domain, :task_list, :identity) SENSITIVE = [] include Aws::Structure end |
#task_list ⇒ Types::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`.
3383 3384 3385 3386 3387 3388 3389 |
# File 'lib/aws-sdk-swf/types.rb', line 3383 class PollForActivityTaskInput < Struct.new( :domain, :task_list, :identity) SENSITIVE = [] include Aws::Structure end |