com.amazonaws.services.ec2.model.InstanceNetworkInterface Java Examples

The following examples show how to use com.amazonaws.services.ec2.model.InstanceNetworkInterface. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: InstanceImpl.java    From aws-sdk-java-resources with Apache License 2.0 4 votes vote down vote up
@Override
public List<InstanceNetworkInterface> getNetworkInterfaces() {
    return (List<InstanceNetworkInterface>)
            resource.getAttribute("NetworkInterfaces");
}
 
Example #2
Source File: Instance.java    From aws-sdk-java-resources with Apache License 2.0 2 votes vote down vote up
/**
 * Gets the value of the NetworkInterfaces attribute. If this resource is
 * not yet loaded, a call to {@code load()} is made to retrieve the value of
 * the attribute.
 */
List<InstanceNetworkInterface> getNetworkInterfaces();