Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.elastictranscoder.model
Class DeletePipelineRequest

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

public class DeletePipelineRequest
extends AmazonWebServiceRequest
implements Serializable

Container for the parameters to the DeletePipeline operation.

To delete a pipeline, send a DELETE request to the /2012-09-25/pipelines/[pipelineId] resource.

You can only delete a pipeline that has never been used or that is not currently in use (doesn't contain any active jobs). If the pipeline is currently in use, DeletePipeline returns an error.

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

Constructor Summary
DeletePipelineRequest()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getId()
          The identifier of the pipeline that you want to delete.
 int hashCode()
           
 void setId(String id)
          The identifier of the pipeline that you want to delete.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DeletePipelineRequest withId(String id)
          The identifier of the pipeline that you want to delete.
 
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

getId

public String getId()
The identifier of the pipeline that you want to delete.

Constraints:
Pattern: ^\d{13}-\w{6}$

Returns:
The identifier of the pipeline that you want to delete.

setId

public void setId(String id)
The identifier of the pipeline that you want to delete.

Constraints:
Pattern: ^\d{13}-\w{6}$

Parameters:
id - The identifier of the pipeline that you want to delete.

withId

public DeletePipelineRequest withId(String id)
The identifier of the pipeline that you want to delete.

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

Constraints:
Pattern: ^\d{13}-\w{6}$

Parameters:
id - The identifier of the pipeline that you want to delete.
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.