Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.cloudformation.model
Class Output

java.lang.Object
  extended by com.amazonaws.services.cloudformation.model.Output
All Implemented Interfaces:
Serializable

public class Output
extends Object
implements Serializable

The Output data type.

See Also:
Serialized Form

Constructor Summary
Output()
           
 
Method Summary
 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.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Output

public Output()
Method Detail

getOutputKey

public String getOutputKey()
The key associated with the output.

Returns:
The key associated with the output.

setOutputKey

public void setOutputKey(String outputKey)
The key associated with the output.

Parameters:
outputKey - The key associated with the output.

withOutputKey

public Output withOutputKey(String outputKey)
The key associated with the output.

Returns a reference to this object so that method calls can be chained together.

Parameters:
outputKey - The key associated with the output.
Returns:
A reference to this updated object so that method calls can be chained together.

getOutputValue

public String getOutputValue()
The value associated with the output.

Returns:
The value associated with the output.

setOutputValue

public void setOutputValue(String outputValue)
The value associated with the output.

Parameters:
outputValue - The value associated with the output.

withOutputValue

public Output withOutputValue(String outputValue)
The value associated with the output.

Returns a reference to this object so that method calls can be chained together.

Parameters:
outputValue - The value associated with the output.
Returns:
A reference to this updated object so that method calls can be chained together.

getDescription

public String getDescription()
User defined description associated with the output.

Returns:
User defined description associated with the output.

setDescription

public void setDescription(String description)
User defined description associated with the output.

Parameters:
description - User defined description associated with the output.

withDescription

public Output withDescription(String description)
User defined description associated with the output.

Returns a reference to this object so that method calls can be chained together.

Parameters:
description - User defined description associated with the output.
Returns:
A reference to this updated 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 class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.