Amazon.EC2.Import.DiskImageImporter.DiskImageImporter C# (CSharp) Метод

DiskImageImporter() публичный Метод

Constructs an image importer to upload and convert virtual machine image or disk volumes for use with Amazon EC2. The importer will use the supplied clients for communicating with Amazon S3 and Amazon EC2. Note that the clients should be configured to use the same region and AWS account.
public DiskImageImporter ( ICoreAmazonS3 s3Client, IAmazonEC2 ec2Client, string bucketName ) : System
s3Client ICoreAmazonS3 Client to use to upload artifacts to Amazon S3
ec2Client IAmazonEC2 Client to use to request image conversion in Amazon EC2
bucketName string /// The name of the Amazon S3 bucket that will contain the uploaded image and manifest. If the bucket /// does not exist it will be created. ///
Результат System
        public DiskImageImporter(ICoreAmazonS3 s3Client, IAmazonEC2 ec2Client, string bucketName)
        {
            S3Client = s3Client;
            EC2Client = ec2Client;
            BucketName = bucketName;
        }

Same methods

DiskImageImporter::DiskImageImporter ( AWSCredentials credentials, RegionEndpoint region, string bucketName ) : System
DiskImageImporter::DiskImageImporter ( RegionEndpoint region, string bucketName ) : System