Class PutPipelineDefinitionRequest

java.lang.Object
com.amazonaws.AmazonWebServiceRequest
com.amazonaws.services.datapipeline.model.PutPipelineDefinitionRequest
All Implemented Interfaces:
ReadLimitInfo, Serializable, Cloneable

public class PutPipelineDefinitionRequest extends AmazonWebServiceRequest implements Serializable, Cloneable

Contains the parameters for PutPipelineDefinition.

See Also:
  • Constructor Details

    • PutPipelineDefinitionRequest

      public PutPipelineDefinitionRequest()
  • Method Details

    • setPipelineId

      public void setPipelineId(String pipelineId)

      The ID of the pipeline.

      Parameters:
      pipelineId - The ID of the pipeline.
    • getPipelineId

      public String getPipelineId()

      The ID of the pipeline.

      Returns:
      The ID of the pipeline.
    • withPipelineId

      public PutPipelineDefinitionRequest withPipelineId(String pipelineId)

      The ID of the pipeline.

      Parameters:
      pipelineId - The ID of the pipeline.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • getPipelineObjects

      public List<PipelineObject> getPipelineObjects()

      The objects that define the pipeline. These objects overwrite the existing pipeline definition.

      Returns:
      The objects that define the pipeline. These objects overwrite the existing pipeline definition.
    • setPipelineObjects

      public void setPipelineObjects(Collection<PipelineObject> pipelineObjects)

      The objects that define the pipeline. These objects overwrite the existing pipeline definition.

      Parameters:
      pipelineObjects - The objects that define the pipeline. These objects overwrite the existing pipeline definition.
    • withPipelineObjects

      public PutPipelineDefinitionRequest withPipelineObjects(PipelineObject... pipelineObjects)

      The objects that define the pipeline. These objects overwrite the existing pipeline definition.

      NOTE: This method appends the values to the existing list (if any). Use setPipelineObjects(java.util.Collection) or withPipelineObjects(java.util.Collection) if you want to override the existing values.

      Parameters:
      pipelineObjects - The objects that define the pipeline. These objects overwrite the existing pipeline definition.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • withPipelineObjects

      public PutPipelineDefinitionRequest withPipelineObjects(Collection<PipelineObject> pipelineObjects)

      The objects that define the pipeline. These objects overwrite the existing pipeline definition.

      Parameters:
      pipelineObjects - The objects that define the pipeline. These objects overwrite the existing pipeline definition.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • getParameterObjects

      public List<ParameterObject> getParameterObjects()

      The parameter objects used with the pipeline.

      Returns:
      The parameter objects used with the pipeline.
    • setParameterObjects

      public void setParameterObjects(Collection<ParameterObject> parameterObjects)

      The parameter objects used with the pipeline.

      Parameters:
      parameterObjects - The parameter objects used with the pipeline.
    • withParameterObjects

      public PutPipelineDefinitionRequest withParameterObjects(ParameterObject... parameterObjects)

      The parameter objects used with the pipeline.

      NOTE: This method appends the values to the existing list (if any). Use setParameterObjects(java.util.Collection) or withParameterObjects(java.util.Collection) if you want to override the existing values.

      Parameters:
      parameterObjects - The parameter objects used with the pipeline.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • withParameterObjects

      public PutPipelineDefinitionRequest withParameterObjects(Collection<ParameterObject> parameterObjects)

      The parameter objects used with the pipeline.

      Parameters:
      parameterObjects - The parameter objects used with the pipeline.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • getParameterValues

      public List<ParameterValue> getParameterValues()

      The parameter values used with the pipeline.

      Returns:
      The parameter values used with the pipeline.
    • setParameterValues

      public void setParameterValues(Collection<ParameterValue> parameterValues)

      The parameter values used with the pipeline.

      Parameters:
      parameterValues - The parameter values used with the pipeline.
    • withParameterValues

      public PutPipelineDefinitionRequest withParameterValues(ParameterValue... parameterValues)

      The parameter values used with the pipeline.

      NOTE: This method appends the values to the existing list (if any). Use setParameterValues(java.util.Collection) or withParameterValues(java.util.Collection) if you want to override the existing values.

      Parameters:
      parameterValues - The parameter values used with the pipeline.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • withParameterValues

      public PutPipelineDefinitionRequest withParameterValues(Collection<ParameterValue> parameterValues)

      The parameter values used with the pipeline.

      Parameters:
      parameterValues - The parameter values used with the pipeline.
      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; useful for testing and debugging.
      Overrides:
      toString in class Object
      Returns:
      A string representation of this object.
      See Also:
    • equals

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

      public int hashCode()
      Overrides:
      hashCode in class Object
    • clone

      Description copied from class: AmazonWebServiceRequest
      Creates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.
      Overrides:
      clone in class AmazonWebServiceRequest
      See Also: