public class Tag extends Object implements Serializable
A key-value pair. A tag consists of a tag key and a tag value. Tag keys and tag values are both required, but tag values can be empty (null) strings.
For information about the rules that apply to tag keys and tag values, see User-Defined Tag Restrictions in the AWS Billing and Cost Management User Guide.
| Constructor and Description |
|---|
Tag() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getTagKey()
The key of the tag.
|
String |
getTagValue()
The value of the tag.
|
int |
hashCode() |
void |
setTagKey(String tagKey)
The key of the tag.
|
void |
setTagValue(String tagValue)
The value of the tag.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Tag |
withTagKey(String tagKey)
The key of the tag.
|
Tag |
withTagValue(String tagValue)
The value of the tag.
|
public String getTagKey()
The key of the tag.
Constraints:
Length: 1 - 128
The key of the tag.
public void setTagKey(String tagKey)
The key of the tag.
Constraints:
Length: 1 - 128
tagKey - The key of the tag.
public Tag withTagKey(String tagKey)
The key of the tag.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 128
tagKey - The key of the tag.
public String getTagValue()
The value of the tag.
Constraints:
Length: 0 - 256
The value of the tag.
public void setTagValue(String tagValue)
The value of the tag.
Constraints:
Length: 0 - 256
tagValue - The value of the tag.
public Tag withTagValue(String tagValue)
The value of the tag.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 256
tagValue - The value of the tag.
public String toString()
toString in class ObjectObject.toString()Copyright © 2020. All rights reserved.