private void TestBuilderPathWithoutKeySuffix()
        {
            DynamoDbMetastoreImpl dbMetastoreImpl = NewBuilder(Region)
                                                    .WithEndPointConfiguration("http://localhost:" + DynamoDbPort, Region)
                                                    .Build();

            Assert.NotNull(dbMetastoreImpl);
            Assert.Equal(string.Empty, dbMetastoreImpl.GetKeySuffix());
        }
        private void TestBuilderPathWithKeySuffix()
        {
            DynamoDbMetastoreImpl dbMetastoreImpl = NewBuilder(Region)
                                                    .WithEndPointConfiguration($"http://{hostName}:{DynamoDbPort}", Region)
                                                    .WithKeySuffix()
                                                    .Build();

            Assert.NotNull(dbMetastoreImpl);
            Assert.Equal(Region, dbMetastoreImpl.GetKeySuffix());
        }