Example usage for com.amazonaws.services.ec2.model RouteTableAssociation getRouteTableId

List of usage examples for com.amazonaws.services.ec2.model RouteTableAssociation getRouteTableId

Introduction

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

Prototype


public String getRouteTableId() 

Source Link

Document

The ID of the route table.

Usage

From source file:com.infinitechaos.vpcviewer.web.rest.dto.RouteTableAssociationDTO.java

License:Open Source License

public RouteTableAssociationDTO(final RouteTableAssociation rta) {
    this.routeTableAssociationId = rta.getRouteTableAssociationId();
    this.routeTableId = rta.getRouteTableId();
    this.subnetId = rta.getSubnetId();
    this.main = rta.getMain();
}