public class ConnectionCost extends Object implements Serializable
Cost description.
Constructor and Description |
---|
ConnectionCost() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getAmount()
The amount of charge per unit.
|
String |
getCurrencyCode()
Currency code based on ISO 4217.
|
String |
getName()
The name of the cost item.
|
String |
getUnit()
The unit used in cost calculation.
|
int |
hashCode() |
void |
setAmount(String amount)
The amount of charge per unit.
|
void |
setCurrencyCode(String currencyCode)
Currency code based on ISO 4217.
|
void |
setName(String name)
The name of the cost item.
|
void |
setUnit(String unit)
The unit used in cost calculation.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ConnectionCost |
withAmount(String amount)
The amount of charge per unit.
|
ConnectionCost |
withCurrencyCode(String currencyCode)
Currency code based on ISO 4217.
|
ConnectionCost |
withName(String name)
The name of the cost item.
|
ConnectionCost |
withUnit(String unit)
The unit used in cost calculation.
|
public String getName()
Example: Inbound data transfer
Example: Inbound data transfer
public void setName(String name)
Example: Inbound data transfer
name
- The name of the cost item. Example: Inbound data transfer
public ConnectionCost withName(String name)
Example: Inbound data transfer
Returns a reference to this object so that method calls can be chained together.
name
- The name of the cost item. Example: Inbound data transfer
public String getUnit()
Example: "Gbps," if the price is calculated based on Gbps.
Example: "Gbps," if the price is calculated based on Gbps.
public void setUnit(String unit)
Example: "Gbps," if the price is calculated based on Gbps.
unit
- The unit used in cost calculation. Example: "Gbps," if the price is calculated based on Gbps.
public ConnectionCost withUnit(String unit)
Example: "Gbps," if the price is calculated based on Gbps.
Returns a reference to this object so that method calls can be chained together.
unit
- The unit used in cost calculation. Example: "Gbps," if the price is calculated based on Gbps.
public String getCurrencyCode()
Example: "USD" for US dollar.
Example: "USD" for US dollar.
public void setCurrencyCode(String currencyCode)
Example: "USD" for US dollar.
currencyCode
- Currency code based on ISO 4217. Example: "USD" for US dollar.
public ConnectionCost withCurrencyCode(String currencyCode)
Example: "USD" for US dollar.
Returns a reference to this object so that method calls can be chained together.
currencyCode
- Currency code based on ISO 4217. Example: "USD" for US dollar.
public String getAmount()
Example: 0.01
Example: 0.01
public void setAmount(String amount)
Example: 0.01
amount
- The amount of charge per unit. Example: 0.01
public ConnectionCost withAmount(String amount)
Example: 0.01
Returns a reference to this object so that method calls can be chained together.
amount
- The amount of charge per unit. Example: 0.01
public String toString()
toString
in class Object
Object.toString()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.