Example usage for com.amazonaws.services.ec2.model PropagatingVgw getGatewayId

List of usage examples for com.amazonaws.services.ec2.model PropagatingVgw getGatewayId

Introduction

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

Prototype


public String getGatewayId() 

Source Link

Document

The ID of the virtual private gateway.

Usage

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

License:Open Source License

public PropagatingVgwDTO(final PropagatingVgw vgw) {
    this.gatewayId = vgw.getGatewayId();
}