Class ParameterAttribute
- java.lang.Object
-
- com.amazonaws.services.datapipeline.model.ParameterAttribute
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ParameterAttribute extends Object implements Serializable, Cloneable
The attributes allowed or specified with a parameter object.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParameterAttribute()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParameterAttribute
clone()
boolean
equals(Object obj)
String
getKey()
The field identifier.String
getStringValue()
The field value, expressed as a String.int
hashCode()
void
setKey(String key)
The field identifier.void
setStringValue(String stringValue)
The field value, expressed as a String.String
toString()
Returns a string representation of this object; useful for testing and debugging.ParameterAttribute
withKey(String key)
The field identifier.ParameterAttribute
withStringValue(String stringValue)
The field value, expressed as a String.
-
-
-
Method Detail
-
setKey
public void setKey(String key)
The field identifier.
- Parameters:
key
- The field identifier.
-
getKey
public String getKey()
The field identifier.
- Returns:
- The field identifier.
-
withKey
public ParameterAttribute withKey(String key)
The field identifier.
- Parameters:
key
- The field identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStringValue
public void setStringValue(String stringValue)
The field value, expressed as a String.
- Parameters:
stringValue
- The field value, expressed as a String.
-
getStringValue
public String getStringValue()
The field value, expressed as a String.
- Returns:
- The field value, expressed as a String.
-
withStringValue
public ParameterAttribute withStringValue(String stringValue)
The field value, expressed as a String.
- Parameters:
stringValue
- The field value, expressed as a String.- 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ParameterAttribute clone()
-
-