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

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

Introduction

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

Prototype


public Boolean getMain() 

Source Link

Document

Indicates whether this is the main 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();
}