Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.datapipeline.model
Class DeletePipelineRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.datapipeline.model.DeletePipelineRequest
All Implemented Interfaces:
Serializable

public class DeletePipelineRequest
extends AmazonWebServiceRequest
implements Serializable

Container for the parameters to the DeletePipeline operation.

Permanently deletes a pipeline, its pipeline definition and its run history. You cannot query or restore a deleted pipeline. AWS Data Pipeline will attempt to cancel instances associated with the pipeline that are currently being processed by task runners. Deleting a pipeline cannot be undone.

To temporarily pause a pipeline instead of deleting it, call SetStatus with the status set to Pause on individual components. Components that are paused by SetStatus can be resumed.

See Also:
DataPipeline.deletePipeline(DeletePipelineRequest), Serialized Form

Constructor Summary
DeletePipelineRequest()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getPipelineId()
          The identifier of the pipeline to be deleted.
 int hashCode()
           
 void setPipelineId(String pipelineId)
          The identifier of the pipeline to be deleted.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DeletePipelineRequest withPipelineId(String pipelineId)
          The identifier of the pipeline to be deleted.
 
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

DeletePipelineRequest

public DeletePipelineRequest()
Method Detail

getPipelineId

public String getPipelineId()
The identifier of the pipeline to be deleted.

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Returns:
The identifier of the pipeline to be deleted.

setPipelineId

public void setPipelineId(String pipelineId)
The identifier of the pipeline to be deleted.

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Parameters:
pipelineId - The identifier of the pipeline to be deleted.

withPipelineId

public DeletePipelineRequest withPipelineId(String pipelineId)
The identifier of the pipeline to be deleted.

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

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Parameters:
pipelineId - The identifier of the pipeline to be deleted.
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.