Struct aws_sdk_ec2::operation::create_instance_export_task::builders::CreateInstanceExportTaskOutputBuilder
source · #[non_exhaustive]pub struct CreateInstanceExportTaskOutputBuilder { /* private fields */ }
Expand description
A builder for CreateInstanceExportTaskOutput
.
Implementations§
source§impl CreateInstanceExportTaskOutputBuilder
impl CreateInstanceExportTaskOutputBuilder
sourcepub fn export_task(self, input: ExportTask) -> Self
pub fn export_task(self, input: ExportTask) -> Self
Information about the export instance task.
sourcepub fn set_export_task(self, input: Option<ExportTask>) -> Self
pub fn set_export_task(self, input: Option<ExportTask>) -> Self
Information about the export instance task.
sourcepub fn get_export_task(&self) -> &Option<ExportTask>
pub fn get_export_task(&self) -> &Option<ExportTask>
Information about the export instance task.
sourcepub fn build(self) -> CreateInstanceExportTaskOutput
pub fn build(self) -> CreateInstanceExportTaskOutput
Consumes the builder and constructs a CreateInstanceExportTaskOutput
.
Trait Implementations§
source§impl Clone for CreateInstanceExportTaskOutputBuilder
impl Clone for CreateInstanceExportTaskOutputBuilder
source§fn clone(&self) -> CreateInstanceExportTaskOutputBuilder
fn clone(&self) -> CreateInstanceExportTaskOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for CreateInstanceExportTaskOutputBuilder
impl Default for CreateInstanceExportTaskOutputBuilder
source§fn default() -> CreateInstanceExportTaskOutputBuilder
fn default() -> CreateInstanceExportTaskOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateInstanceExportTaskOutputBuilder
impl PartialEq for CreateInstanceExportTaskOutputBuilder
source§fn eq(&self, other: &CreateInstanceExportTaskOutputBuilder) -> bool
fn eq(&self, other: &CreateInstanceExportTaskOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateInstanceExportTaskOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateInstanceExportTaskOutputBuilder
impl RefUnwindSafe for CreateInstanceExportTaskOutputBuilder
impl Send for CreateInstanceExportTaskOutputBuilder
impl Sync for CreateInstanceExportTaskOutputBuilder
impl Unpin for CreateInstanceExportTaskOutputBuilder
impl UnwindSafe for CreateInstanceExportTaskOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.