Class: Aws::SWF::Types::CountPendingDecisionTasksInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::CountPendingDecisionTasksInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass CountPendingDecisionTasksInput data as a hash:
{
domain: "DomainName", # required
task_list: { # required
name: "Name", # required
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain that contains the task list.
-
#task_list ⇒ Types::TaskList
The name of the task list.
Instance Attribute Details
#domain ⇒ String
The name of the domain that contains the task list.
1428 1429 1430 1431 1432 1433 |
# File 'lib/aws-sdk-swf/types.rb', line 1428 class CountPendingDecisionTasksInput < Struct.new( :domain, :task_list) SENSITIVE = [] include Aws::Structure end |
#task_list ⇒ Types::TaskList
The name of the task list.
1428 1429 1430 1431 1432 1433 |
# File 'lib/aws-sdk-swf/types.rb', line 1428 class CountPendingDecisionTasksInput < Struct.new( :domain, :task_list) SENSITIVE = [] include Aws::Structure end |