Struct aws_sdk_codedeploy::operation::list_deployment_instances::builders::ListDeploymentInstancesOutputBuilder
source · #[non_exhaustive]pub struct ListDeploymentInstancesOutputBuilder { /* private fields */ }
Expand description
A builder for ListDeploymentInstancesOutput
.
Implementations§
source§impl ListDeploymentInstancesOutputBuilder
impl ListDeploymentInstancesOutputBuilder
sourcepub fn instances_list(self, input: impl Into<String>) -> Self
pub fn instances_list(self, input: impl Into<String>) -> Self
Appends an item to instances_list
.
To override the contents of this collection use set_instances_list
.
A list of instance IDs.
sourcepub fn set_instances_list(self, input: Option<Vec<String>>) -> Self
pub fn set_instances_list(self, input: Option<Vec<String>>) -> Self
A list of instance IDs.
sourcepub fn get_instances_list(&self) -> &Option<Vec<String>>
pub fn get_instances_list(&self) -> &Option<Vec<String>>
A list of instance IDs.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment instances call to return the next set of deployment instances in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment instances call to return the next set of deployment instances in the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment instances call to return the next set of deployment instances in the list.
sourcepub fn build(self) -> ListDeploymentInstancesOutput
pub fn build(self) -> ListDeploymentInstancesOutput
Consumes the builder and constructs a ListDeploymentInstancesOutput
.
Trait Implementations§
source§impl Clone for ListDeploymentInstancesOutputBuilder
impl Clone for ListDeploymentInstancesOutputBuilder
source§fn clone(&self) -> ListDeploymentInstancesOutputBuilder
fn clone(&self) -> ListDeploymentInstancesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListDeploymentInstancesOutputBuilder
impl Default for ListDeploymentInstancesOutputBuilder
source§fn default() -> ListDeploymentInstancesOutputBuilder
fn default() -> ListDeploymentInstancesOutputBuilder
source§impl PartialEq for ListDeploymentInstancesOutputBuilder
impl PartialEq for ListDeploymentInstancesOutputBuilder
source§fn eq(&self, other: &ListDeploymentInstancesOutputBuilder) -> bool
fn eq(&self, other: &ListDeploymentInstancesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListDeploymentInstancesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListDeploymentInstancesOutputBuilder
impl RefUnwindSafe for ListDeploymentInstancesOutputBuilder
impl Send for ListDeploymentInstancesOutputBuilder
impl Sync for ListDeploymentInstancesOutputBuilder
impl Unpin for ListDeploymentInstancesOutputBuilder
impl UnwindSafe for ListDeploymentInstancesOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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