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

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

Introduction

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

Prototype


public String getDescription() 

Source Link

Document

User defined description associated with the parameter.

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();//  w w  w .java 2 s .c  o  m

}