Class Output
- java.lang.Object
-
- com.amazonaws.services.cloudformation.model.Output
-
- All Implemented Interfaces:
Serializable,Cloneable
public class Output extends Object implements Serializable, Cloneable
The Output data type.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Output()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Outputclone()booleanequals(Object obj)StringgetDescription()User defined description associated with the output.StringgetOutputKey()The key associated with the output.StringgetOutputValue()The value associated with the output.inthashCode()voidsetDescription(String description)User defined description associated with the output.voidsetOutputKey(String outputKey)The key associated with the output.voidsetOutputValue(String outputValue)The value associated with the output.StringtoString()Returns a string representation of this object; useful for testing and debugging.OutputwithDescription(String description)User defined description associated with the output.OutputwithOutputKey(String outputKey)The key associated with the output.OutputwithOutputValue(String outputValue)The value associated with the output.
-
-
-
Method Detail
-
setOutputKey
public void setOutputKey(String outputKey)
The key associated with the output.
- Parameters:
outputKey- The key associated with the output.
-
getOutputKey
public String getOutputKey()
The key associated with the output.
- Returns:
- The key associated with the output.
-
withOutputKey
public Output withOutputKey(String outputKey)
The key associated with the output.
- Parameters:
outputKey- The key associated with the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setOutputValue
public void setOutputValue(String outputValue)
The value associated with the output.
- Parameters:
outputValue- The value associated with the output.
-
getOutputValue
public String getOutputValue()
The value associated with the output.
- Returns:
- The value associated with the output.
-
withOutputValue
public Output withOutputValue(String outputValue)
The value associated with the output.
- Parameters:
outputValue- The value associated with the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setDescription
public void setDescription(String description)
User defined description associated with the output.
- Parameters:
description- User defined description associated with the output.
-
getDescription
public String getDescription()
User defined description associated with the output.
- Returns:
- User defined description associated with the output.
-
withDescription
public Output withDescription(String description)
User defined description associated with the output.
- Parameters:
description- User defined description associated with the output.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-