public class ValidationError
extends java.lang.Object
implements java.io.Serializable
Defines a validation error returned by PutPipelineDefinition or ValidatePipelineDefinition. Validation errors prevent pipeline activation. The set of validation errors that can be returned are defined by AWS Data Pipeline.
| コンストラクタと説明 |
|---|
ValidationError() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.List<java.lang.String> |
getErrors()
A description of the validation error.
|
java.lang.String |
getId()
The identifier of the object that contains the validation error.
|
int |
hashCode() |
void |
setErrors(java.util.Collection<java.lang.String> errors)
A description of the validation error.
|
void |
setId(java.lang.String id)
The identifier of the object that contains the validation error.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ValidationError |
withErrors(java.util.Collection<java.lang.String> errors)
A description of the validation error.
|
ValidationError |
withErrors(java.lang.String... errors)
A description of the validation error.
|
ValidationError |
withId(java.lang.String id)
The identifier of the object that contains the validation error.
|
public java.lang.String getId()
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
public void setId(java.lang.String id)
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
id - The identifier of the object that contains the validation error.public ValidationError withId(java.lang.String id)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
id - The identifier of the object that contains the validation error.public java.util.List<java.lang.String> getErrors()
public void setErrors(java.util.Collection<java.lang.String> errors)
errors - A description of the validation error.public ValidationError withErrors(java.lang.String... errors)
Returns a reference to this object so that method calls can be chained together.
errors - A description of the validation error.public ValidationError withErrors(java.util.Collection<java.lang.String> errors)
Returns a reference to this object so that method calls can be chained together.
errors - A description of the validation error.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object