Struct aws_sdk_ec2::client::fluent_builders::ExportImage
source · [−]pub struct ExportImage { /* private fields */ }
Expand description
Fluent builder constructing a request to ExportImage
.
Exports an Amazon Machine Image (AMI) to a VM file. For more information, see Exporting a VM directly from an Amazon Machine Image (AMI) in the VM Import/Export User Guide.
Implementations
sourceimpl ExportImage
impl ExportImage
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ExportImage, AwsResponseRetryClassifier>, SdkError<ExportImageError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ExportImage, AwsResponseRetryClassifier>, SdkError<ExportImageError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<ExportImageOutput, SdkError<ExportImageError>>
pub async fn send(self) -> Result<ExportImageOutput, SdkError<ExportImageError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Token to enable idempotency for export image requests.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Token to enable idempotency for export image requests.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the image being exported. The maximum length is 255 characters.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the image being exported. The maximum length is 255 characters.
sourcepub fn disk_image_format(self, input: DiskImageFormat) -> Self
pub fn disk_image_format(self, input: DiskImageFormat) -> Self
The disk image format.
sourcepub fn set_disk_image_format(self, input: Option<DiskImageFormat>) -> Self
pub fn set_disk_image_format(self, input: Option<DiskImageFormat>) -> Self
The disk image format.
sourcepub fn dry_run(self, input: bool) -> Self
pub fn dry_run(self, input: bool) -> Self
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 is UnauthorizedOperation
.
sourcepub fn set_dry_run(self, input: Option<bool>) -> Self
pub fn set_dry_run(self, input: Option<bool>) -> Self
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 is UnauthorizedOperation
.
sourcepub fn set_image_id(self, input: Option<String>) -> Self
pub fn set_image_id(self, input: Option<String>) -> Self
The ID of the image.
sourcepub fn s3_export_location(self, input: ExportTaskS3LocationRequest) -> Self
pub fn s3_export_location(self, input: ExportTaskS3LocationRequest) -> Self
The Amazon S3 bucket for the destination image. The destination bucket must exist.
sourcepub fn set_s3_export_location(
self,
input: Option<ExportTaskS3LocationRequest>
) -> Self
pub fn set_s3_export_location(
self,
input: Option<ExportTaskS3LocationRequest>
) -> Self
The Amazon S3 bucket for the destination image. The destination bucket must exist.
sourcepub fn role_name(self, input: impl Into<String>) -> Self
pub fn role_name(self, input: impl Into<String>) -> Self
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'.
sourcepub fn set_role_name(self, input: Option<String>) -> Self
pub fn set_role_name(self, input: Option<String>) -> Self
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'.
sourcepub fn tag_specifications(self, input: TagSpecification) -> Self
pub fn tag_specifications(self, input: TagSpecification) -> Self
Appends an item to TagSpecifications
.
To override the contents of this collection use set_tag_specifications
.
The tags to apply to the export image task during creation.
sourcepub fn set_tag_specifications(self, input: Option<Vec<TagSpecification>>) -> Self
pub fn set_tag_specifications(self, input: Option<Vec<TagSpecification>>) -> Self
The tags to apply to the export image task during creation.
Trait Implementations
sourceimpl Clone for ExportImage
impl Clone for ExportImage
sourcefn clone(&self) -> ExportImage
fn clone(&self) -> ExportImage
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more