Class: Aws::States::Types::TaskScheduledEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TaskScheduledEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a task scheduled during an execution.
Constant Summary collapse
- SENSITIVE =
[:parameters]
Instance Attribute Summary collapse
-
#heartbeat_in_seconds ⇒ Integer
The maximum allowed duration between two heartbeats for the task.
-
#parameters ⇒ String
The JSON data passed to the resource referenced in a task state.
-
#region ⇒ String
The region of the scheduled task.
-
#resource ⇒ String
The action of the resource called by a task state.
-
#resource_type ⇒ String
The service name of the resource in a task state.
-
#task_credentials ⇒ Types::TaskCredentials
The credentials that Step Functions uses for the task.
-
#timeout_in_seconds ⇒ Integer
The maximum allowed duration of the task.
Instance Attribute Details
#heartbeat_in_seconds ⇒ Integer
The maximum allowed duration between two heartbeats for the task.
4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 |
# File 'lib/aws-sdk-states/types.rb', line 4062 class TaskScheduledEventDetails < Struct.new( :resource_type, :resource, :region, :parameters, :timeout_in_seconds, :heartbeat_in_seconds, :task_credentials) SENSITIVE = [:parameters] include Aws::Structure end |
#parameters ⇒ String
The JSON data passed to the resource referenced in a task state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 |
# File 'lib/aws-sdk-states/types.rb', line 4062 class TaskScheduledEventDetails < Struct.new( :resource_type, :resource, :region, :parameters, :timeout_in_seconds, :heartbeat_in_seconds, :task_credentials) SENSITIVE = [:parameters] include Aws::Structure end |
#region ⇒ String
The region of the scheduled task
4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 |
# File 'lib/aws-sdk-states/types.rb', line 4062 class TaskScheduledEventDetails < Struct.new( :resource_type, :resource, :region, :parameters, :timeout_in_seconds, :heartbeat_in_seconds, :task_credentials) SENSITIVE = [:parameters] include Aws::Structure end |
#resource ⇒ String
The action of the resource called by a task state.
4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 |
# File 'lib/aws-sdk-states/types.rb', line 4062 class TaskScheduledEventDetails < Struct.new( :resource_type, :resource, :region, :parameters, :timeout_in_seconds, :heartbeat_in_seconds, :task_credentials) SENSITIVE = [:parameters] include Aws::Structure end |
#resource_type ⇒ String
The service name of the resource in a task state.
4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 |
# File 'lib/aws-sdk-states/types.rb', line 4062 class TaskScheduledEventDetails < Struct.new( :resource_type, :resource, :region, :parameters, :timeout_in_seconds, :heartbeat_in_seconds, :task_credentials) SENSITIVE = [:parameters] include Aws::Structure end |
#task_credentials ⇒ Types::TaskCredentials
The credentials that Step Functions uses for the task.
4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 |
# File 'lib/aws-sdk-states/types.rb', line 4062 class TaskScheduledEventDetails < Struct.new( :resource_type, :resource, :region, :parameters, :timeout_in_seconds, :heartbeat_in_seconds, :task_credentials) SENSITIVE = [:parameters] include Aws::Structure end |
#timeout_in_seconds ⇒ Integer
The maximum allowed duration of the task.
4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 |
# File 'lib/aws-sdk-states/types.rb', line 4062 class TaskScheduledEventDetails < Struct.new( :resource_type, :resource, :region, :parameters, :timeout_in_seconds, :heartbeat_in_seconds, :task_credentials) SENSITIVE = [:parameters] include Aws::Structure end |