AWSEC2ExportToS3TaskSpecification

Objective-C

@interface AWSEC2ExportToS3TaskSpecification

Swift

class AWSEC2ExportToS3TaskSpecification

Describes an export instance task.

  • The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.

    Declaration

    Objective-C

    @property (nonatomic) AWSEC2ContainerFormat containerFormat;

    Swift

    var containerFormat: AWSEC2ContainerFormat { get set }
  • The format for the exported image.

    Declaration

    Objective-C

    @property (nonatomic) AWSEC2DiskImageFormat diskImageFormat;

    Swift

    var diskImageFormat: AWSEC2DiskImageFormat { get set }
  • The Amazon S3 bucket for the destination image. The destination bucket must exist and have an access control list (ACL) attached that specifies the Region-specific canonical account ID for the Grantee. For more information about the ACL to your S3 bucket, see Prerequisites in the VM Import/Export User Guide.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable s3Bucket;

    Swift

    var s3Bucket: String? { get set }
  • The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + ‘.’ + diskImageFormat.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable s3Prefix;

    Swift

    var s3Prefix: String? { get set }