Interface ExportToS3TaskSpecification.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ExportToS3TaskSpecification.Builder,ExportToS3TaskSpecification>
,SdkBuilder<ExportToS3TaskSpecification.Builder,ExportToS3TaskSpecification>
,SdkPojo
- Enclosing class:
- ExportToS3TaskSpecification
public static interface ExportToS3TaskSpecification.Builder extends SdkPojo, CopyableBuilder<ExportToS3TaskSpecification.Builder,ExportToS3TaskSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportToS3TaskSpecification.Builder
containerFormat(String containerFormat)
The container format used to combine disk images with metadata (such as OVF).ExportToS3TaskSpecification.Builder
containerFormat(ContainerFormat containerFormat)
The container format used to combine disk images with metadata (such as OVF).ExportToS3TaskSpecification.Builder
diskImageFormat(String diskImageFormat)
The format for the exported image.ExportToS3TaskSpecification.Builder
diskImageFormat(DiskImageFormat diskImageFormat)
The format for the exported image.ExportToS3TaskSpecification.Builder
s3Bucket(String s3Bucket)
The Amazon S3 bucket for the destination image.ExportToS3TaskSpecification.Builder
s3Prefix(String s3Prefix)
The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + '.' + diskImageFormat.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
diskImageFormat
ExportToS3TaskSpecification.Builder diskImageFormat(String diskImageFormat)
The format for the exported image.
- Parameters:
diskImageFormat
- The format for the exported image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DiskImageFormat
,DiskImageFormat
-
diskImageFormat
ExportToS3TaskSpecification.Builder diskImageFormat(DiskImageFormat diskImageFormat)
The format for the exported image.
- Parameters:
diskImageFormat
- The format for the exported image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DiskImageFormat
,DiskImageFormat
-
containerFormat
ExportToS3TaskSpecification.Builder containerFormat(String containerFormat)
The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.
- Parameters:
containerFormat
- The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContainerFormat
,ContainerFormat
-
containerFormat
ExportToS3TaskSpecification.Builder containerFormat(ContainerFormat containerFormat)
The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.
- Parameters:
containerFormat
- The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContainerFormat
,ContainerFormat
-
s3Bucket
ExportToS3TaskSpecification.Builder s3Bucket(String s3Bucket)
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.- Parameters:
s3Bucket
- 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 theGrantee
. For more information about the ACL to your S3 bucket, see Prerequisites in the VM Import/Export User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Prefix
ExportToS3TaskSpecification.Builder s3Prefix(String s3Prefix)
The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + '.' + diskImageFormat.
- Parameters:
s3Prefix
- The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + '.' + diskImageFormat.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-