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

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

Introduction

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

Prototype


public String getResourceId() 

Source Link

Document

The name of the group.

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();/* w  w w . j a va  2 s .c o m*/

}