Class AssociationFilter
- java.lang.Object
-
- com.amazonaws.services.simplesystemsmanagement.model.AssociationFilter
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class AssociationFilter extends Object implements Serializable, Cloneable
Describes a filter.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AssociationFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AssociationFilter
clone()
boolean
equals(Object obj)
String
getKey()
The name of the filter.String
getValue()
The filter value.int
hashCode()
void
setKey(AssociationFilterKey key)
The name of the filter.void
setKey(String key)
The name of the filter.void
setValue(String value)
The filter value.String
toString()
Returns a string representation of this object; useful for testing and debugging.AssociationFilter
withKey(AssociationFilterKey key)
The name of the filter.AssociationFilter
withKey(String key)
The name of the filter.AssociationFilter
withValue(String value)
The filter value.
-
-
-
Method Detail
-
setKey
public void setKey(String key)
The name of the filter.
- Parameters:
key
- The name of the filter.- See Also:
AssociationFilterKey
-
getKey
public String getKey()
The name of the filter.
- Returns:
- The name of the filter.
- See Also:
AssociationFilterKey
-
withKey
public AssociationFilter withKey(String key)
The name of the filter.
- Parameters:
key
- The name of the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AssociationFilterKey
-
setKey
public void setKey(AssociationFilterKey key)
The name of the filter.
- Parameters:
key
- The name of the filter.- See Also:
AssociationFilterKey
-
withKey
public AssociationFilter withKey(AssociationFilterKey key)
The name of the filter.
- Parameters:
key
- The name of the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AssociationFilterKey
-
setValue
public void setValue(String value)
The filter value.
- Parameters:
value
- The filter value.
-
getValue
public String getValue()
The filter value.
- Returns:
- The filter value.
-
withValue
public AssociationFilter withValue(String value)
The filter value.
- Parameters:
value
- The filter value.- 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 AssociationFilter clone()
-
-