public class PipelineObject extends Object implements Serializable, Cloneable
Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.
| Constructor and Description | 
|---|
| PipelineObject() | 
| Modifier and Type | Method and Description | 
|---|---|
| PipelineObject | clone() | 
| boolean | equals(Object obj) | 
| List<Field> | getFields()
 Key-value pairs that define the properties of the object. | 
| String | getId()
 The ID of the object. | 
| String | getName()
 The name of the object. | 
| int | hashCode() | 
| void | setFields(Collection<Field> fields)
 Key-value pairs that define the properties of the object. | 
| void | setId(String id)
 The ID of the object. | 
| void | setName(String name)
 The name of the object. | 
| String | toString()Returns a string representation of this object; useful for testing and debugging. | 
| PipelineObject | withFields(Collection<Field> fields)
 Key-value pairs that define the properties of the object. | 
| PipelineObject | withFields(Field... fields)
 Key-value pairs that define the properties of the object. | 
| PipelineObject | withId(String id)
 The ID of the object. | 
| PipelineObject | withName(String name)
 The name of the object. | 
public void setId(String id)
The ID of the object.
id - The ID of the object.public String getId()
The ID of the object.
public PipelineObject withId(String id)
The ID of the object.
id - The ID of the object.public void setName(String name)
The name of the object.
name - The name of the object.public String getName()
The name of the object.
public PipelineObject withName(String name)
The name of the object.
name - The name of the object.public List<Field> getFields()
Key-value pairs that define the properties of the object.
public void setFields(Collection<Field> fields)
Key-value pairs that define the properties of the object.
fields - Key-value pairs that define the properties of the object.public PipelineObject withFields(Field... fields)
Key-value pairs that define the properties of the object.
 NOTE: This method appends the values to the existing list (if any). Use
 setFields(java.util.Collection) or withFields(java.util.Collection) if you want to override the
 existing values.
 
fields - Key-value pairs that define the properties of the object.public PipelineObject withFields(Collection<Field> fields)
Key-value pairs that define the properties of the object.
fields - Key-value pairs that define the properties of the object.public String toString()
toString in class ObjectObject.toString()public PipelineObject clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.