public class Filter extends Object implements Serializable, Cloneable
Describes a filter.
| Constructor and Description |
|---|
Filter() |
| Modifier and Type | Method and Description |
|---|---|
Filter |
clone() |
boolean |
equals(Object obj) |
String |
getName()
The name of the filter.
|
List<String> |
getValues()
The value of the filter.
|
int |
hashCode() |
void |
setName(String name)
The name of the filter.
|
void |
setValues(Collection<String> values)
The value of the filter.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Filter |
withName(String name)
The name of the filter.
|
Filter |
withValues(Collection<String> values)
The value of the filter.
|
Filter |
withValues(String... values)
The value of the filter.
|
public void setName(String name)
The name of the filter. The valid values are:
"auto-scaling-group", "key",
"value", and "propagate-at-launch".
name - The name of the filter. The valid values are:
"auto-scaling-group", "key",
"value", and "propagate-at-launch".public String getName()
The name of the filter. The valid values are:
"auto-scaling-group", "key",
"value", and "propagate-at-launch".
"auto-scaling-group", "key",
"value", and "propagate-at-launch".public Filter withName(String name)
The name of the filter. The valid values are:
"auto-scaling-group", "key",
"value", and "propagate-at-launch".
name - The name of the filter. The valid values are:
"auto-scaling-group", "key",
"value", and "propagate-at-launch".public void setValues(Collection<String> values)
The value of the filter.
values - The value of the filter.public Filter withValues(String... values)
The value of the filter.
NOTE: This method appends the values to the existing list (if
any). Use setValues(java.util.Collection) or
withValues(java.util.Collection) if you want to override the
existing values.
values - The value of the filter.public Filter withValues(Collection<String> values)
The value of the filter.
values - The value of the filter.public String toString()
toString in class ObjectObject.toString()Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.