class
Amazonite::Lambda::ListDurableExecutionsByFunctionRequest
- Amazonite::Lambda::ListDurableExecutionsByFunctionRequest
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
lambda/list_durable_executions_by_function_request.crConstructors
- .new(pull : JSON::PullParser)
- .new(function_name : String, qualifier : String | Nil = nil, durable_execution_name : String | Nil = nil, statuses : Array(ExecutionStatus) | Nil = nil, started_after : Time | Nil = nil, started_before : Time | Nil = nil, reverse_order : Bool | Nil = nil, marker : String | Nil = nil, max_items : Int32 | Nil = nil)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Instance Method Summary
-
#==(other : self)
Returns
trueif this reference is the same as other. -
#durable_execution_name : String | Nil
Filter executions by name.
-
#durable_execution_name=(durable_execution_name : String | Nil)
Filter executions by name.
-
#function_name : String
The name or ARN of the Lambda function.
-
#function_name=(function_name : String)
The name or ARN of the Lambda function.
-
#hash(hasher)
See
Object#hash(hasher) -
#marker : String | Nil
Pagination token from a previous request to continue retrieving results.
-
#marker=(marker : String | Nil)
Pagination token from a previous request to continue retrieving results.
-
#max_items : Int32 | Nil
Maximum number of executions to return (1-1000).
-
#max_items=(max_items : Int32 | Nil)
Maximum number of executions to return (1-1000).
-
#qualifier : String | Nil
The function version or alias.
-
#qualifier=(qualifier : String | Nil)
The function version or alias.
-
#reverse_order : Bool | Nil
Set to true to return results in chronological order (oldest first).
-
#reverse_order=(reverse_order : Bool | Nil)
Set to true to return results in chronological order (oldest first).
-
#started_after : Time | Nil
Filter executions that started after this timestamp (ISO 8601 format).
-
#started_after=(started_after : Time | Nil)
Filter executions that started after this timestamp (ISO 8601 format).
-
#started_before : Time | Nil
Filter executions that started before this timestamp (ISO 8601 format).
-
#started_before=(started_before : Time | Nil)
Filter executions that started before this timestamp (ISO 8601 format).
-
#statuses : Array(ExecutionStatus) | Nil
Filter executions by status.
-
#statuses=(statuses : Array(ExecutionStatus) | Nil)
Filter executions by status.
- #validate! : Nil
Constructor Detail
Instance Method Detail
Returns true if this reference is the same as other. Invokes same?.
Filter executions by name. Only executions with names that matches this string are returned.
Filter executions by name. Only executions with names that matches this string are returned.
The name or ARN of the Lambda function. You can specify a function name, a partial ARN, or a full ARN.
The name or ARN of the Lambda function. You can specify a function name, a partial ARN, or a full ARN.
Pagination token from a previous request to continue retrieving results.
Pagination token from a previous request to continue retrieving results.
Maximum number of executions to return (1-1000). Default is 100.
The function version or alias. If not specified, lists executions for the $LATEST version.
The function version or alias. If not specified, lists executions for the $LATEST version.
Set to true to return results in chronological order (oldest first). Default is false.
Set to true to return results in chronological order (oldest first). Default is false.
Filter executions that started after this timestamp (ISO 8601 format).
Filter executions that started after this timestamp (ISO 8601 format).
Filter executions that started before this timestamp (ISO 8601 format).
Filter executions that started before this timestamp (ISO 8601 format).
Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.