Class: Aws::States::Types::LambdaFunctionScheduledEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::LambdaFunctionScheduledEventDetails
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about a Lambda function scheduled during an execution.
Constant Summary collapse
- SENSITIVE =
[:input]
Instance Attribute Summary collapse
-
#input ⇒ String
The JSON data input to the Lambda function.
-
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about input for an execution history event.
-
#resource ⇒ String
The Amazon Resource Name (ARN) of the scheduled Lambda function.
-
#task_credentials ⇒ Types::TaskCredentials
The credentials that Step Functions uses for the task.
-
#timeout_in_seconds ⇒ Integer
The maximum allowed duration of the Lambda function.
Instance Attribute Details
#input ⇒ String
The JSON data input to the Lambda function. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2357 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end |
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about input for an execution history event.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2357 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end |
#resource ⇒ String
The Amazon Resource Name (ARN) of the scheduled Lambda function.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2357 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end |
#task_credentials ⇒ Types::TaskCredentials
The credentials that Step Functions uses for the task.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2357 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end |
#timeout_in_seconds ⇒ Integer
The maximum allowed duration of the Lambda function.
2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2357 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end |