Example usage for com.amazonaws.services.ecs.model Attribute getValue

List of usage examples for com.amazonaws.services.ecs.model Attribute getValue

Introduction

In this page you can find the example usage for com.amazonaws.services.ecs.model Attribute getValue.

Prototype


public String getValue() 

Source Link

Document

The value of the attribute.

Usage

From source file:com.netflix.spinnaker.clouddriver.ecs.provider.agent.ContainerInstanceCachingAgent.java

License:Apache License

public static Map<String, Object> convertContainerInstanceToAttributes(ContainerInstance containerInstance) {
    Map<String, Object> attributes = new HashMap<>();
    attributes.put("containerInstanceArn", containerInstance.getContainerInstanceArn());
    attributes.put("ec2InstanceId", containerInstance.getEc2InstanceId());
    for (Attribute containerAttribute : containerInstance.getAttributes()) {
        if (containerAttribute.getName().equals("ecs.availability-zone")) {
            attributes.put("availabilityZone", containerAttribute.getValue());
        }/*from  w w  w.ja v  a2 s  .c o  m*/
    }
    return attributes;
}