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 Output
clone()
boolean
equals(Object obj)
String
getDescription()
User defined description associated with the output.String
getOutputKey()
The key associated with the output.String
getOutputValue()
The value associated with the output.int
hashCode()
void
setDescription(String description)
User defined description associated with the output.void
setOutputKey(String outputKey)
The key associated with the output.void
setOutputValue(String outputValue)
The value associated with the output.String
toString()
Returns a string representation of this object; useful for testing and debugging.Output
withDescription(String description)
User defined description associated with the output.Output
withOutputKey(String outputKey)
The key associated with the output.Output
withOutputValue(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-