Interface ExportImageRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ExportImageRequest.Builder,ExportImageRequest>,Ec2Request.Builder,SdkBuilder<ExportImageRequest.Builder,ExportImageRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ExportImageRequest
@Mutable @NotThreadSafe public static interface ExportImageRequest.Builder extends Ec2Request.Builder, SdkPojo, CopyableBuilder<ExportImageRequest.Builder,ExportImageRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ExportImageRequest.BuilderclientToken(String clientToken)Token to enable idempotency for export image requests.ExportImageRequest.Builderdescription(String description)A description of the image being exported.ExportImageRequest.BuilderdiskImageFormat(String diskImageFormat)The disk image format.ExportImageRequest.BuilderdiskImageFormat(DiskImageFormat diskImageFormat)The disk image format.ExportImageRequest.BuilderdryRun(Boolean dryRun)Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.ExportImageRequest.BuilderimageId(String imageId)The ID of the image.ExportImageRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ExportImageRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ExportImageRequest.BuilderroleName(String roleName)The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.default ExportImageRequest.Builders3ExportLocation(Consumer<ExportTaskS3LocationRequest.Builder> s3ExportLocation)The Amazon S3 bucket for the destination image.ExportImageRequest.Builders3ExportLocation(ExportTaskS3LocationRequest s3ExportLocation)The Amazon S3 bucket for the destination image.ExportImageRequest.BuildertagSpecifications(Collection<TagSpecification> tagSpecifications)The tags to apply to the export image task during creation.ExportImageRequest.BuildertagSpecifications(Consumer<TagSpecification.Builder>... tagSpecifications)The tags to apply to the export image task during creation.ExportImageRequest.BuildertagSpecifications(TagSpecification... tagSpecifications)The tags to apply to the export image task during creation.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Request.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
clientToken
ExportImageRequest.Builder clientToken(String clientToken)
Token to enable idempotency for export image requests.
- Parameters:
clientToken- Token to enable idempotency for export image requests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ExportImageRequest.Builder description(String description)
A description of the image being exported. The maximum length is 255 characters.
- Parameters:
description- A description of the image being exported. The maximum length is 255 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
diskImageFormat
ExportImageRequest.Builder diskImageFormat(String diskImageFormat)
The disk image format.
- Parameters:
diskImageFormat- The disk image format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DiskImageFormat,DiskImageFormat
-
diskImageFormat
ExportImageRequest.Builder diskImageFormat(DiskImageFormat diskImageFormat)
The disk image format.
- Parameters:
diskImageFormat- The disk image format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DiskImageFormat,DiskImageFormat
-
dryRun
ExportImageRequest.Builder dryRun(Boolean dryRun)
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.- Parameters:
dryRun- Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response isDryRunOperation. Otherwise, it isUnauthorizedOperation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageId
ExportImageRequest.Builder imageId(String imageId)
The ID of the image.
- Parameters:
imageId- The ID of the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3ExportLocation
ExportImageRequest.Builder s3ExportLocation(ExportTaskS3LocationRequest s3ExportLocation)
The Amazon S3 bucket for the destination image. The destination bucket must exist.
- Parameters:
s3ExportLocation- The Amazon S3 bucket for the destination image. The destination bucket must exist.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3ExportLocation
default ExportImageRequest.Builder s3ExportLocation(Consumer<ExportTaskS3LocationRequest.Builder> s3ExportLocation)
The Amazon S3 bucket for the destination image. The destination bucket must exist.
This is a convenience method that creates an instance of theExportTaskS3LocationRequest.Builderavoiding the need to create one manually viaExportTaskS3LocationRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3ExportLocation(ExportTaskS3LocationRequest).- Parameters:
s3ExportLocation- a consumer that will call methods onExportTaskS3LocationRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3ExportLocation(ExportTaskS3LocationRequest)
-
roleName
ExportImageRequest.Builder roleName(String roleName)
The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If this parameter is not specified, the default role is named 'vmimport'.
- Parameters:
roleName- The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If this parameter is not specified, the default role is named 'vmimport'.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagSpecifications
ExportImageRequest.Builder tagSpecifications(Collection<TagSpecification> tagSpecifications)
The tags to apply to the export image task during creation.
- Parameters:
tagSpecifications- The tags to apply to the export image task during creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagSpecifications
ExportImageRequest.Builder tagSpecifications(TagSpecification... tagSpecifications)
The tags to apply to the export image task during creation.
- Parameters:
tagSpecifications- The tags to apply to the export image task during creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagSpecifications
ExportImageRequest.Builder tagSpecifications(Consumer<TagSpecification.Builder>... tagSpecifications)
The tags to apply to the export image task during creation.
This is a convenience method that creates an instance of theTagSpecification.Builderavoiding the need to create one manually viaTagSpecification.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tagSpecifications(List.) - Parameters:
tagSpecifications- a consumer that will call methods onTagSpecification.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tagSpecifications(java.util.Collection)
-
overrideConfiguration
ExportImageRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ExportImageRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-