Example usage for com.amazonaws.services.autoscaling.model TagDescription getResourceType

List of usage examples for com.amazonaws.services.autoscaling.model TagDescription getResourceType

Introduction

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

Prototype


public String getResourceType() 

Source Link

Document

The type of resource.

Usage

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

License:BSD License

private void writeTagDescription(TagDescription tag) throws XMLStreamException {
    startElement("tag");
    attribute("key", tag.getKey());
    attribute("propagate-at-launch", tag.getPropagateAtLaunch());
    attribute("resource-id", tag.getResourceId());
    attribute("resource-type", tag.getResourceType());
    attribute("value", tag.getValue());
    endElement();//from   www  .j  av a  2s. c  om

}