JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.795

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
com.amazonaws.services.stepfunctions.model

Class MapRunExecutionCounts

    • Method Summary

      All Methods
      Modifier and Type Method and Description
      MapRunExecutionCounts clone ()
      boolean equals (Object obj)
      Long getAborted ()
      The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
      Long getFailed ()
      The total number of child workflow executions that were started by a Map Run, but have failed.
      Long getFailuresNotRedrivable ()
      The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal.
      Long getPending ()
      The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
      Long getPendingRedrive ()
      The number of unsuccessful child workflow executions currently waiting to be redriven.
      Long getResultsWritten ()
      Returns the count of child workflow executions whose results were written by ResultWriter.
      Long getRunning ()
      The total number of child workflow executions that were started by a Map Run and are currently in-progress.
      Long getSucceeded ()
      The total number of child workflow executions that were started by a Map Run and have completed successfully.
      Long getTimedOut ()
      The total number of child workflow executions that were started by a Map Run and have timed out.
      Long getTotal ()
      The total number of child workflow executions that were started by a Map Run.
      int hashCode ()
      void marshall (ProtocolMarshaller protocolMarshaller)
      Marshalls this structured data using the given ProtocolMarshaller.
      void setAborted (Long aborted)
      The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
      void setFailed (Long failed)
      The total number of child workflow executions that were started by a Map Run, but have failed.
      void setFailuresNotRedrivable (Long failuresNotRedrivable)
      The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal.
      void setPending (Long pending)
      The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
      void setPendingRedrive (Long pendingRedrive)
      The number of unsuccessful child workflow executions currently waiting to be redriven.
      void setResultsWritten (Long resultsWritten)
      Returns the count of child workflow executions whose results were written by ResultWriter.
      void setRunning (Long running)
      The total number of child workflow executions that were started by a Map Run and are currently in-progress.
      void setSucceeded (Long succeeded)
      The total number of child workflow executions that were started by a Map Run and have completed successfully.
      void setTimedOut (Long timedOut)
      The total number of child workflow executions that were started by a Map Run and have timed out.
      void setTotal (Long total)
      The total number of child workflow executions that were started by a Map Run.
      String toString ()
      Returns a string representation of this object.
      MapRunExecutionCounts withAborted (Long aborted)
      The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
      MapRunExecutionCounts withFailed (Long failed)
      The total number of child workflow executions that were started by a Map Run, but have failed.
      MapRunExecutionCounts withFailuresNotRedrivable (Long failuresNotRedrivable)
      The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal.
      MapRunExecutionCounts withPending (Long pending)
      The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
      MapRunExecutionCounts withPendingRedrive (Long pendingRedrive)
      The number of unsuccessful child workflow executions currently waiting to be redriven.
      MapRunExecutionCounts withResultsWritten (Long resultsWritten)
      Returns the count of child workflow executions whose results were written by ResultWriter.
      MapRunExecutionCounts withRunning (Long running)
      The total number of child workflow executions that were started by a Map Run and are currently in-progress.
      MapRunExecutionCounts withSucceeded (Long succeeded)
      The total number of child workflow executions that were started by a Map Run and have completed successfully.
      MapRunExecutionCounts withTimedOut (Long timedOut)
      The total number of child workflow executions that were started by a Map Run and have timed out.
      MapRunExecutionCounts withTotal (Long total)
      The total number of child workflow executions that were started by a Map Run.
    • Constructor Detail

      • MapRunExecutionCounts

        public MapRunExecutionCounts()
    • Method Detail

      • setPending

        public void setPending(Long pending)

        The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.

        Parameters:
        pending - The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
      • getPending

        public Long getPending()

        The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.

        Returns:
        The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
      • withPending

        public MapRunExecutionCounts withPending(Long pending)

        The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.

        Parameters:
        pending - The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setRunning

        public void setRunning(Long running)

        The total number of child workflow executions that were started by a Map Run and are currently in-progress.

        Parameters:
        running - The total number of child workflow executions that were started by a Map Run and are currently in-progress.
      • getRunning

        public Long getRunning()

        The total number of child workflow executions that were started by a Map Run and are currently in-progress.

        Returns:
        The total number of child workflow executions that were started by a Map Run and are currently in-progress.
      • withRunning

        public MapRunExecutionCounts withRunning(Long running)

        The total number of child workflow executions that were started by a Map Run and are currently in-progress.

        Parameters:
        running - The total number of child workflow executions that were started by a Map Run and are currently in-progress.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setSucceeded

        public void setSucceeded(Long succeeded)

        The total number of child workflow executions that were started by a Map Run and have completed successfully.

        Parameters:
        succeeded - The total number of child workflow executions that were started by a Map Run and have completed successfully.
      • getSucceeded

        public Long getSucceeded()

        The total number of child workflow executions that were started by a Map Run and have completed successfully.

        Returns:
        The total number of child workflow executions that were started by a Map Run and have completed successfully.
      • withSucceeded

        public MapRunExecutionCounts withSucceeded(Long succeeded)

        The total number of child workflow executions that were started by a Map Run and have completed successfully.

        Parameters:
        succeeded - The total number of child workflow executions that were started by a Map Run and have completed successfully.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setFailed

        public void setFailed(Long failed)

        The total number of child workflow executions that were started by a Map Run, but have failed.

        Parameters:
        failed - The total number of child workflow executions that were started by a Map Run, but have failed.
      • getFailed

        public Long getFailed()

        The total number of child workflow executions that were started by a Map Run, but have failed.

        Returns:
        The total number of child workflow executions that were started by a Map Run, but have failed.
      • withFailed

        public MapRunExecutionCounts withFailed(Long failed)

        The total number of child workflow executions that were started by a Map Run, but have failed.

        Parameters:
        failed - The total number of child workflow executions that were started by a Map Run, but have failed.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setTimedOut

        public void setTimedOut(Long timedOut)

        The total number of child workflow executions that were started by a Map Run and have timed out.

        Parameters:
        timedOut - The total number of child workflow executions that were started by a Map Run and have timed out.
      • getTimedOut

        public Long getTimedOut()

        The total number of child workflow executions that were started by a Map Run and have timed out.

        Returns:
        The total number of child workflow executions that were started by a Map Run and have timed out.
      • withTimedOut

        public MapRunExecutionCounts withTimedOut(Long timedOut)

        The total number of child workflow executions that were started by a Map Run and have timed out.

        Parameters:
        timedOut - The total number of child workflow executions that were started by a Map Run and have timed out.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setAborted

        public void setAborted(Long aborted)

        The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.

        Parameters:
        aborted - The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
      • getAborted

        public Long getAborted()

        The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.

        Returns:
        The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
      • withAborted

        public MapRunExecutionCounts withAborted(Long aborted)

        The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.

        Parameters:
        aborted - The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setTotal

        public void setTotal(Long total)

        The total number of child workflow executions that were started by a Map Run.

        Parameters:
        total - The total number of child workflow executions that were started by a Map Run.
      • getTotal

        public Long getTotal()

        The total number of child workflow executions that were started by a Map Run.

        Returns:
        The total number of child workflow executions that were started by a Map Run.
      • withTotal

        public MapRunExecutionCounts withTotal(Long total)

        The total number of child workflow executions that were started by a Map Run.

        Parameters:
        total - The total number of child workflow executions that were started by a Map Run.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setResultsWritten

        public void setResultsWritten(Long resultsWritten)

        Returns the count of child workflow executions whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.

        Parameters:
        resultsWritten - Returns the count of child workflow executions whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.
      • getResultsWritten

        public Long getResultsWritten()

        Returns the count of child workflow executions whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.

        Returns:
        Returns the count of child workflow executions whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.
      • withResultsWritten

        public MapRunExecutionCounts withResultsWritten(Long resultsWritten)

        Returns the count of child workflow executions whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.

        Parameters:
        resultsWritten - Returns the count of child workflow executions whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setFailuresNotRedrivable

        public void setFailuresNotRedrivable(Long failuresNotRedrivable)

        The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of FAILED, ABORTED, or TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.

        Parameters:
        failuresNotRedrivable - The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of FAILED, ABORTED, or TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.
      • getFailuresNotRedrivable

        public Long getFailuresNotRedrivable()

        The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of FAILED, ABORTED, or TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.

        Returns:
        The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of FAILED, ABORTED, or TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.
      • withFailuresNotRedrivable

        public MapRunExecutionCounts withFailuresNotRedrivable(Long failuresNotRedrivable)

        The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of FAILED, ABORTED, or TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.

        Parameters:
        failuresNotRedrivable - The number of FAILED, ABORTED, or TIMED_OUT child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of FAILED, ABORTED, or TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • setPendingRedrive

        public void setPendingRedrive(Long pendingRedrive)

        The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be FAILED, ABORTED, or TIMED_OUT in the original execution attempt or a previous redrive attempt.

        Parameters:
        pendingRedrive - The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be FAILED, ABORTED, or TIMED_OUT in the original execution attempt or a previous redrive attempt.
      • getPendingRedrive

        public Long getPendingRedrive()

        The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be FAILED, ABORTED, or TIMED_OUT in the original execution attempt or a previous redrive attempt.

        Returns:
        The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be FAILED, ABORTED, or TIMED_OUT in the original execution attempt or a previous redrive attempt.
      • withPendingRedrive

        public MapRunExecutionCounts withPendingRedrive(Long pendingRedrive)

        The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be FAILED, ABORTED, or TIMED_OUT in the original execution attempt or a previous redrive attempt.

        Parameters:
        pendingRedrive - The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be FAILED, ABORTED, or TIMED_OUT in the original execution attempt or a previous redrive attempt.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • toString

        public String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
        Returns:
        A string representation of this object.
        See Also:
        Object.toString()
Skip navigation links

AltStyle によって変換されたページ (->オリジナル) /