class AWS::EC2::InternetGateway

def exists?

Returns:
  • (Boolean) - Returns true if the gateway exists.
def exists?
  begin
    get_resource
    true
  rescue Errors::InvalidInternetGatewayID::NotFound
    false
  end
end