public class TemplateParameter extends Object implements Serializable
The TemplateParameter data type.
Constructor and Description |
---|
TemplateParameter() |
Modifier and Type | Method and Description |
---|---|
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.
|
public String getParameterKey()
public void setParameterKey(String parameterKey)
parameterKey
- The name associated with the parameter.public TemplateParameter withParameterKey(String parameterKey)
Returns a reference to this object so that method calls can be chained together.
parameterKey
- The name associated with the parameter.public String getDefaultValue()
public void setDefaultValue(String defaultValue)
defaultValue
- The default value associated with the parameter.public TemplateParameter withDefaultValue(String defaultValue)
Returns a reference to this object so that method calls can be chained together.
defaultValue
- The default value associated with the parameter.public Boolean isNoEcho()
public void setNoEcho(Boolean noEcho)
noEcho
- Flag indicating whether the parameter should be displayed as plain
text in logs and UIs.public TemplateParameter withNoEcho(Boolean noEcho)
Returns a reference to this object so that method calls can be chained together.
noEcho
- Flag indicating whether the parameter should be displayed as plain
text in logs and UIs.public Boolean getNoEcho()
public String getDescription()
public void setDescription(String description)
description
- User defined description associated with the parameter.public TemplateParameter withDescription(String description)
Returns a reference to this object so that method calls can be chained together.
description
- User defined description associated with the parameter.public String toString()
toString
in class Object
Object.toString()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.