Class PutPipelineDefinitionResult
- java.lang.Object
-
- com.amazonaws.services.datapipeline.model.PutPipelineDefinitionResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class PutPipelineDefinitionResult extends Object implements Serializable, Cloneable
Contains the output of PutPipelineDefinition.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PutPipelineDefinitionResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PutPipelineDefinitionResultclone()booleanequals(Object obj)BooleangetErrored()Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and callPutPipelineDefinitionto commit the corrected pipeline.List<ValidationError>getValidationErrors()The validation errors that are associated with the objects defined inpipelineObjects.List<ValidationWarning>getValidationWarnings()The validation warnings that are associated with the objects defined inpipelineObjects.inthashCode()BooleanisErrored()Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and callPutPipelineDefinitionto commit the corrected pipeline.voidsetErrored(Boolean errored)Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and callPutPipelineDefinitionto commit the corrected pipeline.voidsetValidationErrors(Collection<ValidationError> validationErrors)The validation errors that are associated with the objects defined inpipelineObjects.voidsetValidationWarnings(Collection<ValidationWarning> validationWarnings)The validation warnings that are associated with the objects defined inpipelineObjects.StringtoString()Returns a string representation of this object; useful for testing and debugging.PutPipelineDefinitionResultwithErrored(Boolean errored)Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and callPutPipelineDefinitionto commit the corrected pipeline.PutPipelineDefinitionResultwithValidationErrors(ValidationError... validationErrors)The validation errors that are associated with the objects defined inpipelineObjects.PutPipelineDefinitionResultwithValidationErrors(Collection<ValidationError> validationErrors)The validation errors that are associated with the objects defined inpipelineObjects.PutPipelineDefinitionResultwithValidationWarnings(ValidationWarning... validationWarnings)The validation warnings that are associated with the objects defined inpipelineObjects.PutPipelineDefinitionResultwithValidationWarnings(Collection<ValidationWarning> validationWarnings)The validation warnings that are associated with the objects defined inpipelineObjects.
-
-
-
Method Detail
-
getValidationErrors
public List<ValidationError> getValidationErrors()
The validation errors that are associated with the objects defined in
pipelineObjects.- Returns:
- The validation errors that are associated with the objects
defined in
pipelineObjects.
-
setValidationErrors
public void setValidationErrors(Collection<ValidationError> validationErrors)
The validation errors that are associated with the objects defined in
pipelineObjects.- Parameters:
validationErrors- The validation errors that are associated with the objects defined inpipelineObjects.
-
withValidationErrors
public PutPipelineDefinitionResult withValidationErrors(ValidationError... validationErrors)
The validation errors that are associated with the objects defined in
pipelineObjects.NOTE: This method appends the values to the existing list (if any). Use
setValidationErrors(java.util.Collection)orwithValidationErrors(java.util.Collection)if you want to override the existing values.- Parameters:
validationErrors- The validation errors that are associated with the objects defined inpipelineObjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withValidationErrors
public PutPipelineDefinitionResult withValidationErrors(Collection<ValidationError> validationErrors)
The validation errors that are associated with the objects defined in
pipelineObjects.- Parameters:
validationErrors- The validation errors that are associated with the objects defined inpipelineObjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getValidationWarnings
public List<ValidationWarning> getValidationWarnings()
The validation warnings that are associated with the objects defined in
pipelineObjects.- Returns:
- The validation warnings that are associated with the objects
defined in
pipelineObjects.
-
setValidationWarnings
public void setValidationWarnings(Collection<ValidationWarning> validationWarnings)
The validation warnings that are associated with the objects defined in
pipelineObjects.- Parameters:
validationWarnings- The validation warnings that are associated with the objects defined inpipelineObjects.
-
withValidationWarnings
public PutPipelineDefinitionResult withValidationWarnings(ValidationWarning... validationWarnings)
The validation warnings that are associated with the objects defined in
pipelineObjects.NOTE: This method appends the values to the existing list (if any). Use
setValidationWarnings(java.util.Collection)orwithValidationWarnings(java.util.Collection)if you want to override the existing values.- Parameters:
validationWarnings- The validation warnings that are associated with the objects defined inpipelineObjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withValidationWarnings
public PutPipelineDefinitionResult withValidationWarnings(Collection<ValidationWarning> validationWarnings)
The validation warnings that are associated with the objects defined in
pipelineObjects.- Parameters:
validationWarnings- The validation warnings that are associated with the objects defined inpipelineObjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setErrored
public void setErrored(Boolean errored)
Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call
PutPipelineDefinitionto commit the corrected pipeline.- Parameters:
errored- Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and callPutPipelineDefinitionto commit the corrected pipeline.
-
getErrored
public Boolean getErrored()
Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call
PutPipelineDefinitionto commit the corrected pipeline.- Returns:
- Indicates whether there were validation errors, and the pipeline
definition is stored but cannot be activated until you correct
the pipeline and call
PutPipelineDefinitionto commit the corrected pipeline.
-
withErrored
public PutPipelineDefinitionResult withErrored(Boolean errored)
Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call
PutPipelineDefinitionto commit the corrected pipeline.- Parameters:
errored- Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and callPutPipelineDefinitionto commit the corrected pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isErrored
public Boolean isErrored()
Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call
PutPipelineDefinitionto commit the corrected pipeline.- Returns:
- Indicates whether there were validation errors, and the pipeline
definition is stored but cannot be activated until you correct
the pipeline and call
PutPipelineDefinitionto commit the corrected pipeline.
-
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 PutPipelineDefinitionResult clone()
-
-