Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.simpleworkflow.model
Class SignalExternalWorkflowExecutionFailedEventAttributes

java.lang.Object
  extended by com.amazonaws.services.simpleworkflow.model.SignalExternalWorkflowExecutionFailedEventAttributes
All Implemented Interfaces:
Serializable

public class SignalExternalWorkflowExecutionFailedEventAttributes
extends Object
implements Serializable

Provides details of the SignalExternalWorkflowExecutionFailed event.

See Also:
Serialized Form

Constructor Summary
SignalExternalWorkflowExecutionFailedEventAttributes()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getCause()
          The cause of the failure to process the decision.
 String getControl()
          Returns the value of the Control property for this object.
 Long getDecisionTaskCompletedEventId()
          The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal.
 Long getInitiatedEventId()
          The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal.
 String getRunId()
          The runId of the external workflow execution that the signal was being delivered to.
 String getWorkflowId()
          The workflowId of the external workflow execution that the signal was being delivered to.
 int hashCode()
           
 void setCause(SignalExternalWorkflowExecutionFailedCause cause)
          The cause of the failure to process the decision.
 void setCause(String cause)
          The cause of the failure to process the decision.
 void setControl(String control)
          Sets the value of the Control property for this object.
 void setDecisionTaskCompletedEventId(Long decisionTaskCompletedEventId)
          The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal.
 void setInitiatedEventId(Long initiatedEventId)
          The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal.
 void setRunId(String runId)
          The runId of the external workflow execution that the signal was being delivered to.
 void setWorkflowId(String workflowId)
          The workflowId of the external workflow execution that the signal was being delivered to.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 SignalExternalWorkflowExecutionFailedEventAttributes withCause(SignalExternalWorkflowExecutionFailedCause cause)
          The cause of the failure to process the decision.
 SignalExternalWorkflowExecutionFailedEventAttributes withCause(String cause)
          The cause of the failure to process the decision.
 SignalExternalWorkflowExecutionFailedEventAttributes withControl(String control)
          Sets the value of the Control property for this object.
 SignalExternalWorkflowExecutionFailedEventAttributes withDecisionTaskCompletedEventId(Long decisionTaskCompletedEventId)
          The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal.
 SignalExternalWorkflowExecutionFailedEventAttributes withInitiatedEventId(Long initiatedEventId)
          The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal.
 SignalExternalWorkflowExecutionFailedEventAttributes withRunId(String runId)
          The runId of the external workflow execution that the signal was being delivered to.
 SignalExternalWorkflowExecutionFailedEventAttributes withWorkflowId(String workflowId)
          The workflowId of the external workflow execution that the signal was being delivered to.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SignalExternalWorkflowExecutionFailedEventAttributes

public SignalExternalWorkflowExecutionFailedEventAttributes()
Method Detail

getWorkflowId

public String getWorkflowId()
The workflowId of the external workflow execution that the signal was being delivered to.

Constraints:
Length: 1 - 256

Returns:
The workflowId of the external workflow execution that the signal was being delivered to.

setWorkflowId

public void setWorkflowId(String workflowId)
The workflowId of the external workflow execution that the signal was being delivered to.

Constraints:
Length: 1 - 256

Parameters:
workflowId - The workflowId of the external workflow execution that the signal was being delivered to.

withWorkflowId

public SignalExternalWorkflowExecutionFailedEventAttributes withWorkflowId(String workflowId)
The workflowId of the external workflow execution that the signal was being delivered to.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 256

Parameters:
workflowId - The workflowId of the external workflow execution that the signal was being delivered to.
Returns:
A reference to this updated object so that method calls can be chained together.

getRunId

public String getRunId()
The runId of the external workflow execution that the signal was being delivered to.

Constraints:
Length: 0 - 64

Returns:
The runId of the external workflow execution that the signal was being delivered to.

setRunId

public void setRunId(String runId)
The runId of the external workflow execution that the signal was being delivered to.

Constraints:
Length: 0 - 64

Parameters:
runId - The runId of the external workflow execution that the signal was being delivered to.

withRunId

public SignalExternalWorkflowExecutionFailedEventAttributes withRunId(String runId)
The runId of the external workflow execution that the signal was being delivered to.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 0 - 64

Parameters:
runId - The runId of the external workflow execution that the signal was being delivered to.
Returns:
A reference to this updated object so that method calls can be chained together.

getCause

public String getCause()
The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.

Constraints:
Allowed Values: UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION, SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED, OPERATION_NOT_PERMITTED

Returns:
The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.
See Also:
SignalExternalWorkflowExecutionFailedCause

setCause

public void setCause(String cause)
The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.

Constraints:
Allowed Values: UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION, SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED, OPERATION_NOT_PERMITTED

Parameters:
cause - The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.
See Also:
SignalExternalWorkflowExecutionFailedCause

withCause

public SignalExternalWorkflowExecutionFailedEventAttributes withCause(String cause)
The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Allowed Values: UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION, SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED, OPERATION_NOT_PERMITTED

Parameters:
cause - The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.
Returns:
A reference to this updated object so that method calls can be chained together.
See Also:
SignalExternalWorkflowExecutionFailedCause

setCause

public void setCause(SignalExternalWorkflowExecutionFailedCause cause)
The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.

Constraints:
Allowed Values: UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION, SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED, OPERATION_NOT_PERMITTED

Parameters:
cause - The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.
See Also:
SignalExternalWorkflowExecutionFailedCause

withCause

public SignalExternalWorkflowExecutionFailedEventAttributes withCause(SignalExternalWorkflowExecutionFailedCause cause)
The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Allowed Values: UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION, SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED, OPERATION_NOT_PERMITTED

Parameters:
cause - The cause of the failure to process the decision. This information is generated by the system and can be useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.
Returns:
A reference to this updated object so that method calls can be chained together.
See Also:
SignalExternalWorkflowExecutionFailedCause

getInitiatedEventId

public Long getInitiatedEventId()
The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

Returns:
The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

setInitiatedEventId

public void setInitiatedEventId(Long initiatedEventId)
The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

Parameters:
initiatedEventId - The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

withInitiatedEventId

public SignalExternalWorkflowExecutionFailedEventAttributes withInitiatedEventId(Long initiatedEventId)
The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

Returns a reference to this object so that method calls can be chained together.

Parameters:
initiatedEventId - The id of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflowExecution decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
Returns:
A reference to this updated object so that method calls can be chained together.

getDecisionTaskCompletedEventId

public Long getDecisionTaskCompletedEventId()
The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal. This information can be useful for diagnosing problems by tracing back the cause of events leading up to this event.

Returns:
The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal. This information can be useful for diagnosing problems by tracing back the cause of events leading up to this event.

setDecisionTaskCompletedEventId

public void setDecisionTaskCompletedEventId(Long decisionTaskCompletedEventId)
The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal. This information can be useful for diagnosing problems by tracing back the cause of events leading up to this event.

Parameters:
decisionTaskCompletedEventId - The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal. This information can be useful for diagnosing problems by tracing back the cause of events leading up to this event.

withDecisionTaskCompletedEventId

public SignalExternalWorkflowExecutionFailedEventAttributes withDecisionTaskCompletedEventId(Long decisionTaskCompletedEventId)
The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal. This information can be useful for diagnosing problems by tracing back the cause of events leading up to this event.

Returns a reference to this object so that method calls can be chained together.

Parameters:
decisionTaskCompletedEventId - The id of the DecisionTaskCompleted event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution decision for this signal. This information can be useful for diagnosing problems by tracing back the cause of events leading up to this event.
Returns:
A reference to this updated object so that method calls can be chained together.

getControl

public String getControl()
Returns the value of the Control property for this object.

Constraints:
Length: 0 - 32768

Returns:
The value of the Control property for this object.

setControl

public void setControl(String control)
Sets the value of the Control property for this object.

Constraints:
Length: 0 - 32768

Parameters:
control - The new value for the Control property for this object.

withControl

public SignalExternalWorkflowExecutionFailedEventAttributes withControl(String control)
Sets the value of the Control property for this object.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 0 - 32768

Parameters:
control - The new value for the Control property for this object.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.