List of usage examples for com.amazonaws.services.cloudformation.model TemplateParameter getNoEcho
public Boolean getNoEcho()
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
From source file:org.xmlsh.aws.util.AWSCFNCommand.java
License:BSD License
public void writeTemplateParameter(TemplateParameter p) throws XMLStreamException { startElement("parameter"); attribute("key", p.getParameterKey()); attribute("description", p.getDescription()); attribute("no-echo", p.getNoEcho()); attribute("default", p.getDefaultValue()); endElement();/*from w w w. java 2 s.c om*/ }