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

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

Introduction

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

Prototype


public Boolean getPropagateAtLaunch() 

Source Link

Document

Determines whether the tag is added to new instances as they are launched in 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 av  a  2  s  . c om*/

}