Example usage for com.amazonaws.services.cloudformation.model TemplateParameter getNoEcho

List of usage examples for com.amazonaws.services.cloudformation.model TemplateParameter getNoEcho

Introduction

In this page you can find the example usage for com.amazonaws.services.cloudformation.model TemplateParameter getNoEcho.

Prototype


public Boolean getNoEcho() 

Source Link

Document

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

Usage

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*/

}