public class Tag extends Object implements Serializable
Represents metadata to associate with Amazon EC2 resources. Each tag consists of a user-defined key and value. Use tags to categorize EC2 resources, such as by purpose, owner, or environment.
| Constructor and Description |
|---|
Tag()
Default constructor for a new Tag object.
|
Tag(String key)
Constructs a new Tag object.
|
Tag(String key,
String value)
Constructs a new Tag object.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getKey()
The tag's key.
|
String |
getValue()
The tag's value.
|
int |
hashCode() |
void |
setKey(String key)
The tag's key.
|
void |
setValue(String value)
The tag's value.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Tag |
withKey(String key)
The tag's key.
|
Tag |
withValue(String value)
The tag's value.
|
public Tag()
public Tag(String key, String value)
key - The tag's key.value - The tag's value.public Tag(String key)
key - The tag's key.public String getKey()
public void setKey(String key)
key - The tag's key.public Tag withKey(String key)
Returns a reference to this object so that method calls can be chained together.
key - The tag's key.public String getValue()
public void setValue(String value)
value - The tag's value.public Tag withValue(String value)
Returns a reference to this object so that method calls can be chained together.
value - The tag's value.public String toString()
toString in class ObjectObject.toString()Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.