public void DetachVolume_Should_DetachVolume()
        {
            var store = new ClientDetailsStore();
            AwsClientDetails clientDetails = store.Load(Container);

            EC2Helper ec2Helper = new EC2Helper(clientDetails);

            const string device     = "xvdf";
            const string volumeId   = "vol-6bd56a02";
            const string instanceId = "i-6de0a406";

            ec2Helper.DetachVolume(device, instanceId, volumeId, true);
        }