public class ParameterObject extends Object implements Serializable, Cloneable
Contains information about a parameter object.
| Constructor and Description | 
|---|
| ParameterObject() | 
| Modifier and Type | Method and Description | 
|---|---|
| ParameterObject | clone() | 
| boolean | equals(Object obj) | 
| List<ParameterAttribute> | getAttributes()
 The attributes of the parameter object. | 
| String | getId()
 The ID of the parameter object. | 
| int | hashCode() | 
| void | setAttributes(Collection<ParameterAttribute> attributes)
 The attributes of the parameter object. | 
| void | setId(String id)
 The ID of the parameter object. | 
| String | toString()Returns a string representation of this object; useful for testing and
 debugging. | 
| ParameterObject | withAttributes(Collection<ParameterAttribute> attributes)
 The attributes of the parameter object. | 
| ParameterObject | withAttributes(ParameterAttribute... attributes)
 The attributes of the parameter object. | 
| ParameterObject | withId(String id)
 The ID of the parameter object. | 
public void setId(String id)
The ID of the parameter object.
id - The ID of the parameter object.public String getId()
The ID of the parameter object.
public ParameterObject withId(String id)
The ID of the parameter object.
id - The ID of the parameter object.public List<ParameterAttribute> getAttributes()
The attributes of the parameter object.
public void setAttributes(Collection<ParameterAttribute> attributes)
The attributes of the parameter object.
attributes - The attributes of the parameter object.public ParameterObject withAttributes(ParameterAttribute... attributes)
The attributes of the parameter object.
 NOTE: This method appends the values to the existing list (if
 any). Use setAttributes(java.util.Collection) or
 withAttributes(java.util.Collection) if you want to override the
 existing values.
 
attributes - The attributes of the parameter object.public ParameterObject withAttributes(Collection<ParameterAttribute> attributes)
The attributes of the parameter object.
attributes - The attributes of the parameter object.public String toString()
toString in class ObjectObject.toString()public ParameterObject clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.