List of usage examples for com.amazonaws.services.ec2.model RouteTableAssociation getMain
public Boolean getMain()
Indicates whether this is the main route table.
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(); }