public Bundle(string applicationSetName, DirectoryInfo bundleDirectory, string version, string bucket, string etag, string stackName) { _applicationSetName = applicationSetName; _bundleDirectory = bundleDirectory; _bundleName = bundleDirectory.Name; _version = version; _bucket = bucket; _etag = etag; _stackName = stackName; _deploymentGroup = DeploymentGroupSpecification.FromFile(Path.Combine(_bundleDirectory.FullName, "deployspec.yml")); Console.WriteLine("Bucket initialized with bucket: " + bucket); }