Struct aws_sdk_ec2::operation::describe_replace_root_volume_tasks::builders::DescribeReplaceRootVolumeTasksOutputBuilder
source · #[non_exhaustive]pub struct DescribeReplaceRootVolumeTasksOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeReplaceRootVolumeTasksOutput
.
Implementations§
source§impl DescribeReplaceRootVolumeTasksOutputBuilder
impl DescribeReplaceRootVolumeTasksOutputBuilder
sourcepub fn replace_root_volume_tasks(self, input: ReplaceRootVolumeTask) -> Self
pub fn replace_root_volume_tasks(self, input: ReplaceRootVolumeTask) -> Self
Appends an item to replace_root_volume_tasks
.
To override the contents of this collection use set_replace_root_volume_tasks
.
Information about the root volume replacement task.
sourcepub fn set_replace_root_volume_tasks(
self,
input: Option<Vec<ReplaceRootVolumeTask>>,
) -> Self
pub fn set_replace_root_volume_tasks( self, input: Option<Vec<ReplaceRootVolumeTask>>, ) -> Self
Information about the root volume replacement task.
sourcepub fn get_replace_root_volume_tasks(
&self,
) -> &Option<Vec<ReplaceRootVolumeTask>>
pub fn get_replace_root_volume_tasks( &self, ) -> &Option<Vec<ReplaceRootVolumeTask>>
Information about the root volume replacement task.
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) -> DescribeReplaceRootVolumeTasksOutput
pub fn build(self) -> DescribeReplaceRootVolumeTasksOutput
Consumes the builder and constructs a DescribeReplaceRootVolumeTasksOutput
.
Trait Implementations§
source§impl Clone for DescribeReplaceRootVolumeTasksOutputBuilder
impl Clone for DescribeReplaceRootVolumeTasksOutputBuilder
source§fn clone(&self) -> DescribeReplaceRootVolumeTasksOutputBuilder
fn clone(&self) -> DescribeReplaceRootVolumeTasksOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeReplaceRootVolumeTasksOutputBuilder
impl Default for DescribeReplaceRootVolumeTasksOutputBuilder
source§fn default() -> DescribeReplaceRootVolumeTasksOutputBuilder
fn default() -> DescribeReplaceRootVolumeTasksOutputBuilder
source§impl PartialEq for DescribeReplaceRootVolumeTasksOutputBuilder
impl PartialEq for DescribeReplaceRootVolumeTasksOutputBuilder
source§fn eq(&self, other: &DescribeReplaceRootVolumeTasksOutputBuilder) -> bool
fn eq(&self, other: &DescribeReplaceRootVolumeTasksOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeReplaceRootVolumeTasksOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeReplaceRootVolumeTasksOutputBuilder
impl RefUnwindSafe for DescribeReplaceRootVolumeTasksOutputBuilder
impl Send for DescribeReplaceRootVolumeTasksOutputBuilder
impl Sync for DescribeReplaceRootVolumeTasksOutputBuilder
impl Unpin for DescribeReplaceRootVolumeTasksOutputBuilder
impl UnwindSafe for DescribeReplaceRootVolumeTasksOutputBuilder
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
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>
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>
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 more