Example usage for com.amazonaws.services.ec2.model SecurityGroup toString

List of usage examples for com.amazonaws.services.ec2.model SecurityGroup toString

Introduction

In this page you can find the example usage for com.amazonaws.services.ec2.model SecurityGroup toString.

Prototype

@Override
public String toString() 

Source Link

Document

Returns a string representation of this object.

Usage

From source file:com.indemnity83.ephemeral.api.SpotInstance.java

License:Open Source License

public SpotInstance(SecurityGroup securityGroup) {
    this();
    this.addSecurityGroup(securityGroup.toString());
}

From source file:com.indemnity83.ephemeral.api.SpotInstance.java

License:Open Source License

public SpotInstance in(SecurityGroup securityGroup) {
    addSecurityGroup(securityGroup.toString());

    return this;
}

From source file:org.zalando.stups.fullstop.plugin.instance.SecurityGroupToString.java

License:Apache License

@Override
public String apply(final SecurityGroup t) {
    return t.toString();
}