Struct aws_sdk_ec2::model::ExportToS3TaskSpecification
source · [−]#[non_exhaustive]pub struct ExportToS3TaskSpecification {
pub container_format: Option<ContainerFormat>,
pub disk_image_format: Option<DiskImageFormat>,
pub s3_bucket: Option<String>,
pub s3_prefix: Option<String>,
}
Expand description
Describes an export instance task.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.container_format: Option<ContainerFormat>
The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.
disk_image_format: Option<DiskImageFormat>
The format for the exported image.
s3_bucket: Option<String>
The Amazon S3 bucket for the destination image. The destination bucket must exist and grant WRITE and READ_ACP permissions to the Amazon Web Services account vm-import-export@amazon.com
.
s3_prefix: Option<String>
The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + '.' + diskImageFormat.
Implementations
sourceimpl ExportToS3TaskSpecification
impl ExportToS3TaskSpecification
sourcepub fn container_format(&self) -> Option<&ContainerFormat>
pub fn container_format(&self) -> Option<&ContainerFormat>
The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.
sourcepub fn disk_image_format(&self) -> Option<&DiskImageFormat>
pub fn disk_image_format(&self) -> Option<&DiskImageFormat>
The format for the exported image.
sourceimpl ExportToS3TaskSpecification
impl ExportToS3TaskSpecification
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExportToS3TaskSpecification
.
Trait Implementations
sourceimpl Clone for ExportToS3TaskSpecification
impl Clone for ExportToS3TaskSpecification
sourcefn clone(&self) -> ExportToS3TaskSpecification
fn clone(&self) -> ExportToS3TaskSpecification
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ExportToS3TaskSpecification
impl Debug for ExportToS3TaskSpecification
sourceimpl PartialEq<ExportToS3TaskSpecification> for ExportToS3TaskSpecification
impl PartialEq<ExportToS3TaskSpecification> for ExportToS3TaskSpecification
sourcefn eq(&self, other: &ExportToS3TaskSpecification) -> bool
fn eq(&self, other: &ExportToS3TaskSpecification) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ExportToS3TaskSpecification) -> bool
fn ne(&self, other: &ExportToS3TaskSpecification) -> bool
This method tests for !=
.
impl StructuralPartialEq for ExportToS3TaskSpecification
Auto Trait Implementations
impl RefUnwindSafe for ExportToS3TaskSpecification
impl Send for ExportToS3TaskSpecification
impl Sync for ExportToS3TaskSpecification
impl Unpin for ExportToS3TaskSpecification
impl UnwindSafe for ExportToS3TaskSpecification
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more