Class: Aws::EC2::Types::ExportToS3TaskSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::ExportToS3TaskSpecification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Describes an export instance task.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_format ⇒ String
The container format used to combine disk images with metadata (such as OVF).
-
#disk_image_format ⇒ String
The format for the exported image.
-
#s3_bucket ⇒ String
The Amazon S3 bucket for the destination image.
-
#s3_prefix ⇒ String
The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + ‘.’ + diskImageFormat.
Instance Attribute Details
#container_format ⇒ String
The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.
34883 34884 34885 34886 34887 34888 34889 34890 |
# File 'lib/aws-sdk-ec2/types.rb', line 34883 class ExportToS3TaskSpecification < Struct.new( :disk_image_format, :container_format, :s3_bucket, :s3_prefix) SENSITIVE = [] include Aws::Structure end |
#disk_image_format ⇒ String
The format for the exported image.
34883 34884 34885 34886 34887 34888 34889 34890 |
# File 'lib/aws-sdk-ec2/types.rb', line 34883 class ExportToS3TaskSpecification < Struct.new( :disk_image_format, :container_format, :s3_bucket, :s3_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_bucket ⇒ String
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][1
-
in the VM Import/Export User Guide.
[1]: docs.aws.amazon.com/vm-import/latest/userguide/vmexport.html#vmexport-prerequisites
34883 34884 34885 34886 34887 34888 34889 34890 |
# File 'lib/aws-sdk-ec2/types.rb', line 34883 class ExportToS3TaskSpecification < Struct.new( :disk_image_format, :container_format, :s3_bucket, :s3_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_prefix ⇒ String
The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + ‘.’ + diskImageFormat.
34883 34884 34885 34886 34887 34888 34889 34890 |
# File 'lib/aws-sdk-ec2/types.rb', line 34883 class ExportToS3TaskSpecification < Struct.new( :disk_image_format, :container_format, :s3_bucket, :s3_prefix) SENSITIVE = [] include Aws::Structure end |