Struct aws_sdk_ec2::operation::describe_store_image_tasks::builders::DescribeStoreImageTasksOutputBuilder
source · #[non_exhaustive]pub struct DescribeStoreImageTasksOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeStoreImageTasksOutput
.
Implementations§
source§impl DescribeStoreImageTasksOutputBuilder
impl DescribeStoreImageTasksOutputBuilder
sourcepub fn store_image_task_results(self, input: StoreImageTaskResult) -> Self
pub fn store_image_task_results(self, input: StoreImageTaskResult) -> Self
Appends an item to store_image_task_results
.
To override the contents of this collection use set_store_image_task_results
.
The information about the AMI store tasks.
sourcepub fn set_store_image_task_results(
self,
input: Option<Vec<StoreImageTaskResult>>
) -> Self
pub fn set_store_image_task_results( self, input: Option<Vec<StoreImageTaskResult>> ) -> Self
The information about the AMI store tasks.
sourcepub fn get_store_image_task_results(&self) -> &Option<Vec<StoreImageTaskResult>>
pub fn get_store_image_task_results(&self) -> &Option<Vec<StoreImageTaskResult>>
The information about the AMI store tasks.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to include in another request to get the next page of items. This value is null
when there are no more items to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to include in another request to get the next page of items. This value is null
when there are no more items to return.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to include in another request to get the next page of items. This value is null
when there are no more items to return.
sourcepub fn build(self) -> DescribeStoreImageTasksOutput
pub fn build(self) -> DescribeStoreImageTasksOutput
Consumes the builder and constructs a DescribeStoreImageTasksOutput
.
Trait Implementations§
source§impl Clone for DescribeStoreImageTasksOutputBuilder
impl Clone for DescribeStoreImageTasksOutputBuilder
source§fn clone(&self) -> DescribeStoreImageTasksOutputBuilder
fn clone(&self) -> DescribeStoreImageTasksOutputBuilder
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 DescribeStoreImageTasksOutputBuilder
impl Default for DescribeStoreImageTasksOutputBuilder
source§fn default() -> DescribeStoreImageTasksOutputBuilder
fn default() -> DescribeStoreImageTasksOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeStoreImageTasksOutputBuilder
impl PartialEq for DescribeStoreImageTasksOutputBuilder
source§fn eq(&self, other: &DescribeStoreImageTasksOutputBuilder) -> bool
fn eq(&self, other: &DescribeStoreImageTasksOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeStoreImageTasksOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeStoreImageTasksOutputBuilder
impl RefUnwindSafe for DescribeStoreImageTasksOutputBuilder
impl Send for DescribeStoreImageTasksOutputBuilder
impl Sync for DescribeStoreImageTasksOutputBuilder
impl Unpin for DescribeStoreImageTasksOutputBuilder
impl UnwindSafe for DescribeStoreImageTasksOutputBuilder
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.