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 ParameterAttributeclone()booleanequals(Object obj)StringgetKey()The field identifier.StringgetStringValue()The field value, expressed as a String.inthashCode()voidsetKey(String key)The field identifier.voidsetStringValue(String stringValue)The field value, expressed as a String.StringtoString()Returns a string representation of this object; useful for testing and debugging.ParameterAttributewithKey(String key)The field identifier.ParameterAttributewithStringValue(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ParameterAttribute clone()
-
-