in dotnet/datastax-v3/connection-lambda/src/keyspaces-lambda-csharp/KeyspacesSession.cs [17:27]
public static KeyspacesSession Instance()
{
if (connection == null)
{
LambdaLogger.Log("Connecting to Keyspaces...");
connection = new KeyspacesSession();
connection.establishConnection();
LambdaLogger.Log("Successfully established connection with Keyspaces.");
}
return connection;
}