Class GetPipelineDefinitionResult
- java.lang.Object
-
- com.amazonaws.services.datapipeline.model.GetPipelineDefinitionResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class GetPipelineDefinitionResult extends Object implements Serializable, Cloneable
Contains the output of GetPipelineDefinition.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetPipelineDefinitionResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetPipelineDefinitionResultclone()booleanequals(Object obj)List<ParameterObject>getParameterObjects()The parameter objects used in the pipeline definition.List<ParameterValue>getParameterValues()The parameter values used in the pipeline definition.List<PipelineObject>getPipelineObjects()The objects defined in the pipeline.inthashCode()voidsetParameterObjects(Collection<ParameterObject> parameterObjects)The parameter objects used in the pipeline definition.voidsetParameterValues(Collection<ParameterValue> parameterValues)The parameter values used in the pipeline definition.voidsetPipelineObjects(Collection<PipelineObject> pipelineObjects)The objects defined in the pipeline.StringtoString()Returns a string representation of this object; useful for testing and debugging.GetPipelineDefinitionResultwithParameterObjects(ParameterObject... parameterObjects)The parameter objects used in the pipeline definition.GetPipelineDefinitionResultwithParameterObjects(Collection<ParameterObject> parameterObjects)The parameter objects used in the pipeline definition.GetPipelineDefinitionResultwithParameterValues(ParameterValue... parameterValues)The parameter values used in the pipeline definition.GetPipelineDefinitionResultwithParameterValues(Collection<ParameterValue> parameterValues)The parameter values used in the pipeline definition.GetPipelineDefinitionResultwithPipelineObjects(PipelineObject... pipelineObjects)The objects defined in the pipeline.GetPipelineDefinitionResultwithPipelineObjects(Collection<PipelineObject> pipelineObjects)The objects defined in the pipeline.
-
-
-
Method Detail
-
getPipelineObjects
public List<PipelineObject> getPipelineObjects()
The objects defined in the pipeline.
- Returns:
- The objects defined in the pipeline.
-
setPipelineObjects
public void setPipelineObjects(Collection<PipelineObject> pipelineObjects)
The objects defined in the pipeline.
- Parameters:
pipelineObjects- The objects defined in the pipeline.
-
withPipelineObjects
public GetPipelineDefinitionResult withPipelineObjects(PipelineObject... pipelineObjects)
The objects defined in the pipeline.
NOTE: This method appends the values to the existing list (if any). Use
setPipelineObjects(java.util.Collection)orwithPipelineObjects(java.util.Collection)if you want to override the existing values.- Parameters:
pipelineObjects- The objects defined in the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withPipelineObjects
public GetPipelineDefinitionResult withPipelineObjects(Collection<PipelineObject> pipelineObjects)
The objects defined in the pipeline.
- Parameters:
pipelineObjects- The objects defined in the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getParameterObjects
public List<ParameterObject> getParameterObjects()
The parameter objects used in the pipeline definition.
- Returns:
- The parameter objects used in the pipeline definition.
-
setParameterObjects
public void setParameterObjects(Collection<ParameterObject> parameterObjects)
The parameter objects used in the pipeline definition.
- Parameters:
parameterObjects- The parameter objects used in the pipeline definition.
-
withParameterObjects
public GetPipelineDefinitionResult withParameterObjects(ParameterObject... parameterObjects)
The parameter objects used in the pipeline definition.
NOTE: This method appends the values to the existing list (if any). Use
setParameterObjects(java.util.Collection)orwithParameterObjects(java.util.Collection)if you want to override the existing values.- Parameters:
parameterObjects- The parameter objects used in the pipeline definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withParameterObjects
public GetPipelineDefinitionResult withParameterObjects(Collection<ParameterObject> parameterObjects)
The parameter objects used in the pipeline definition.
- Parameters:
parameterObjects- The parameter objects used in the pipeline definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getParameterValues
public List<ParameterValue> getParameterValues()
The parameter values used in the pipeline definition.
- Returns:
- The parameter values used in the pipeline definition.
-
setParameterValues
public void setParameterValues(Collection<ParameterValue> parameterValues)
The parameter values used in the pipeline definition.
- Parameters:
parameterValues- The parameter values used in the pipeline definition.
-
withParameterValues
public GetPipelineDefinitionResult withParameterValues(ParameterValue... parameterValues)
The parameter values used in the pipeline definition.
NOTE: This method appends the values to the existing list (if any). Use
setParameterValues(java.util.Collection)orwithParameterValues(java.util.Collection)if you want to override the existing values.- Parameters:
parameterValues- The parameter values used in the pipeline definition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withParameterValues
public GetPipelineDefinitionResult withParameterValues(Collection<ParameterValue> parameterValues)
The parameter values used in the pipeline definition.
- Parameters:
parameterValues- The parameter values used in the pipeline definition.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetPipelineDefinitionResult clone()
-
-