Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.simpleworkflow.model
Class DescribeWorkflowExecutionRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.simpleworkflow.model.DescribeWorkflowExecutionRequest

public class DescribeWorkflowExecutionRequest
extends AmazonWebServiceRequest

Container for the parameters to the DescribeWorkflowExecution operation.

Returns information about the specified workflow execution including its type and some statistics.

NOTE: This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.

See Also:
AmazonSimpleWorkflow.describeWorkflowExecution(DescribeWorkflowExecutionRequest)

Constructor Summary
DescribeWorkflowExecutionRequest()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getDomain()
          The name of the domain containing the workflow execution.
 WorkflowExecution getExecution()
          The workflow execution to describe.
 int hashCode()
           
 void setDomain(String domain)
          The name of the domain containing the workflow execution.
 void setExecution(WorkflowExecution execution)
          The workflow execution to describe.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DescribeWorkflowExecutionRequest withDomain(String domain)
          The name of the domain containing the workflow execution.
 DescribeWorkflowExecutionRequest withExecution(WorkflowExecution execution)
          The workflow execution to describe.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, setRequestCredentials
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DescribeWorkflowExecutionRequest

public DescribeWorkflowExecutionRequest()
Method Detail

getDomain

public String getDomain()
The name of the domain containing the workflow execution.

Constraints:
Length: 1 - 256

Returns:
The name of the domain containing the workflow execution.

setDomain

public void setDomain(String domain)
The name of the domain containing the workflow execution.

Constraints:
Length: 1 - 256

Parameters:
domain - The name of the domain containing the workflow execution.

withDomain

public DescribeWorkflowExecutionRequest withDomain(String domain)
The name of the domain containing the workflow execution.

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

Constraints:
Length: 1 - 256

Parameters:
domain - The name of the domain containing the workflow execution.
Returns:
A reference to this updated object so that method calls can be chained together.

getExecution

public WorkflowExecution getExecution()
The workflow execution to describe.

Returns:
The workflow execution to describe.

setExecution

public void setExecution(WorkflowExecution execution)
The workflow execution to describe.

Parameters:
execution - The workflow execution to describe.

withExecution

public DescribeWorkflowExecutionRequest withExecution(WorkflowExecution execution)
The workflow execution to describe.

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

Parameters:
execution - The workflow execution to describe.
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.