Interface ListDurableExecutionsByFunctionRequest.Builder

  • Method Details

    • functionName

      The name or ARN of the Lambda function. You can specify a function name, a partial ARN, or a full ARN.

      Parameters:
      functionName - The name or ARN of the Lambda function. You can specify a function name, a partial ARN, or a full ARN.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • qualifier

      The function version or alias. If not specified, lists executions for the $LATEST version.

      Parameters:
      qualifier - The function version or alias. If not specified, lists executions for the $LATEST version.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • durableExecutionName

      ListDurableExecutionsByFunctionRequest.Builder durableExecutionName(String durableExecutionName)

      Filter executions by name. Only executions with names that contain this string are returned.

      Parameters:
      durableExecutionName - Filter executions by name. Only executions with names that contain this string are returned.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • statusesWithStrings

      Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.

      Parameters:
      statuses - Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • statusesWithStrings

      ListDurableExecutionsByFunctionRequest.Builder statusesWithStrings(String... statuses)

      Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.

      Parameters:
      statuses - Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • statuses

      Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.

      Parameters:
      statuses - Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • statuses

      Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.

      Parameters:
      statuses - Filter executions by status. Valid values: RUNNING, SUCCEEDED, FAILED, TIMED_OUT, STOPPED.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • startedAfter

      Filter executions that started after this timestamp (ISO 8601 format).

      Parameters:
      startedAfter - Filter executions that started after this timestamp (ISO 8601 format).
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • startedBefore

      Filter executions that started before this timestamp (ISO 8601 format).

      Parameters:
      startedBefore - Filter executions that started before this timestamp (ISO 8601 format).
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • reverseOrder

      Set to true to return results in reverse chronological order (newest first). Default is false.

      Parameters:
      reverseOrder - Set to true to return results in reverse chronological order (newest first). Default is false.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • marker

      Pagination token from a previous request to continue retrieving results.

      Parameters:
      marker - Pagination token from a previous request to continue retrieving results.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • maxItems

      Maximum number of executions to return (1-1000). Default is 100.

      Parameters:
      maxItems - Maximum number of executions to return (1-1000). Default is 100.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      overrideConfiguration - The override configuration.
      Returns:
      This object for method chaining.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      builderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be given.
      Returns:
      This object for method chaining.