Class: Aws::States::Types::ActivityScheduledEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::ActivityScheduledEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about an activity scheduled during an execution.
Constant Summary collapse
- SENSITIVE =
[:input]
Instance Attribute Summary collapse
-
#heartbeat_in_seconds ⇒ Integer
The maximum allowed duration between two heartbeats for the activity task.
-
#input ⇒ String
The JSON data input to the activity task.
-
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the input for an execution history event.
-
#resource ⇒ String
The Amazon Resource Name (ARN) of the scheduled activity.
-
#timeout_in_seconds ⇒ Integer
The maximum allowed duration of the activity task.
Instance Attribute Details
#heartbeat_in_seconds ⇒ Integer
The maximum allowed duration between two heartbeats for the activity task.
157 158 159 160 161 162 163 164 165 |
# File 'lib/aws-sdk-states/types.rb', line 157 class ActivityScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :heartbeat_in_seconds) SENSITIVE = [:input] include Aws::Structure end |
#input ⇒ String
The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
157 158 159 160 161 162 163 164 165 |
# File 'lib/aws-sdk-states/types.rb', line 157 class ActivityScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :heartbeat_in_seconds) SENSITIVE = [:input] include Aws::Structure end |
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the input for an execution history event.
157 158 159 160 161 162 163 164 165 |
# File 'lib/aws-sdk-states/types.rb', line 157 class ActivityScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :heartbeat_in_seconds) SENSITIVE = [:input] include Aws::Structure end |
#resource ⇒ String
The Amazon Resource Name (ARN) of the scheduled activity.
157 158 159 160 161 162 163 164 165 |
# File 'lib/aws-sdk-states/types.rb', line 157 class ActivityScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :heartbeat_in_seconds) SENSITIVE = [:input] include Aws::Structure end |
#timeout_in_seconds ⇒ Integer
The maximum allowed duration of the activity task.
157 158 159 160 161 162 163 164 165 |
# File 'lib/aws-sdk-states/types.rb', line 157 class ActivityScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :heartbeat_in_seconds) SENSITIVE = [:input] include Aws::Structure end |