Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.cloudformation.model
Class TemplateParameter

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

public class TemplateParameter
extends Object
implements Serializable

The TemplateParameter data type.

See Also:
Serialized Form

Constructor Summary
TemplateParameter()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getDefaultValue()
          The default value associated with the parameter.
 String getDescription()
          User defined description associated with the parameter.
 Boolean getNoEcho()
          Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
 String getParameterKey()
          The name associated with the parameter.
 int hashCode()
           
 Boolean isNoEcho()
          Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
 void setDefaultValue(String defaultValue)
          The default value associated with the parameter.
 void setDescription(String description)
          User defined description associated with the parameter.
 void setNoEcho(Boolean noEcho)
          Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
 void setParameterKey(String parameterKey)
          The name associated with the parameter.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 TemplateParameter withDefaultValue(String defaultValue)
          The default value associated with the parameter.
 TemplateParameter withDescription(String description)
          User defined description associated with the parameter.
 TemplateParameter withNoEcho(Boolean noEcho)
          Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
 TemplateParameter withParameterKey(String parameterKey)
          The name associated with the parameter.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TemplateParameter

public TemplateParameter()
Method Detail

getParameterKey

public String getParameterKey()
The name associated with the parameter.

Returns:
The name associated with the parameter.

setParameterKey

public void setParameterKey(String parameterKey)
The name associated with the parameter.

Parameters:
parameterKey - The name associated with the parameter.

withParameterKey

public TemplateParameter withParameterKey(String parameterKey)
The name associated with the parameter.

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

Parameters:
parameterKey - The name associated with the parameter.
Returns:
A reference to this updated object so that method calls can be chained together.

getDefaultValue

public String getDefaultValue()
The default value associated with the parameter.

Returns:
The default value associated with the parameter.

setDefaultValue

public void setDefaultValue(String defaultValue)
The default value associated with the parameter.

Parameters:
defaultValue - The default value associated with the parameter.

withDefaultValue

public TemplateParameter withDefaultValue(String defaultValue)
The default value associated with the parameter.

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

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

isNoEcho

public Boolean isNoEcho()
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

Returns:
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

setNoEcho

public void setNoEcho(Boolean noEcho)
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

Parameters:
noEcho - Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

withNoEcho

public TemplateParameter withNoEcho(Boolean noEcho)
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

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

Parameters:
noEcho - Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
Returns:
A reference to this updated object so that method calls can be chained together.

getNoEcho

public Boolean getNoEcho()
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

Returns:
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

getDescription

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

Returns:
User defined description associated with the parameter.

setDescription

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

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

withDescription

public TemplateParameter withDescription(String description)
User defined description associated with the parameter.

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

Parameters:
description - User defined description associated with the parameter.
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.