Class: Aws::Lambda::Types::ListDurableExecutionsByFunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ListDurableExecutionsByFunctionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#durable_execution_name ⇒ String
Filter executions by name.
-
#function_name ⇒ String
The name or ARN of the Lambda function.
-
#marker ⇒ String
Pagination token from a previous request to continue retrieving results.
-
#max_items ⇒ Integer
Maximum number of executions to return (1-1000).
-
#qualifier ⇒ String
The function version or alias.
-
#reverse_order ⇒ Boolean
Set to true to return results in reverse chronological order (newest first).
-
#started_after ⇒ Time
Filter executions that started after this timestamp (ISO 8601 format).
-
#started_before ⇒ Time
Filter executions that started before this timestamp (ISO 8601 format).
-
#statuses ⇒ Array<String>
Filter executions by status.
Instance Attribute Details
#durable_execution_name ⇒ String
Filter executions by name. Only executions with names that contain this string are returned.
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#function_name ⇒ String
The name or ARN of the Lambda function. You can specify a function name, a partial ARN, or a full ARN.
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Pagination token from a previous request to continue retrieving results.
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
Maximum number of executions to return (1-1000). Default is 100.
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#qualifier ⇒ String
The function version or alias. If not specified, lists executions for the $LATEST version.
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#reverse_order ⇒ Boolean
Set to true to return results in reverse chronological order (newest first). Default is false.
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#started_after ⇒ Time
Filter executions that started after this timestamp (ISO 8601 format).
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#started_before ⇒ Time
Filter executions that started before this timestamp (ISO 8601 format).
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#statuses ⇒ Array<String>
Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-lambda/types.rb', line 6236 class ListDurableExecutionsByFunctionRequest < Struct.new( :function_name, :qualifier, :durable_execution_name, :statuses, :started_after, :started_before, :reverse_order, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |