Example usage for com.amazonaws.services.autoscaling.model DescribeScalingProcessTypesResult getProcesses

List of usage examples for com.amazonaws.services.autoscaling.model DescribeScalingProcessTypesResult getProcesses

Introduction

In this page you can find the example usage for com.amazonaws.services.autoscaling.model DescribeScalingProcessTypesResult getProcesses.

Prototype


public java.util.List<ProcessType> getProcesses() 

Source Link

Document

The names of the process types.

Usage

From source file:org.xmlsh.aws.asDescribeScalingProcessTypes.java

License:BSD License

private void writeScalingProceessTypes(DescribeScalingProcessTypesResult stypes) throws XMLStreamException {

    startElement("process-types");
    for (ProcessType pt : stypes.getProcesses()) {
        startElement("process-type");

        attribute("name", pt.getProcessName());
        endElement();/*w w w  .ja  v  a  2s  .c  o  m*/

    }

    endElement();
}