Struct aws_sdk_codedeploy::operation::list_deployment_targets::builders::ListDeploymentTargetsOutputBuilder
source · #[non_exhaustive]pub struct ListDeploymentTargetsOutputBuilder { /* private fields */ }Expand description
A builder for ListDeploymentTargetsOutput.
Implementations§
source§impl ListDeploymentTargetsOutputBuilder
impl ListDeploymentTargetsOutputBuilder
sourcepub fn target_ids(self, input: impl Into<String>) -> Self
pub fn target_ids(self, input: impl Into<String>) -> Self
Appends an item to target_ids.
To override the contents of this collection use set_target_ids.
The unique IDs of deployment targets.
sourcepub fn set_target_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_target_ids(self, input: Option<Vec<String>>) -> Self
The unique IDs of deployment targets.
sourcepub fn get_target_ids(&self) -> &Option<Vec<String>>
pub fn get_target_ids(&self) -> &Option<Vec<String>>
The unique IDs of deployment targets.
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, a token identifier is also returned. It can be used in a subsequent ListDeploymentTargets call to return the next set of deployment targets 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, a token identifier is also returned. It can be used in a subsequent ListDeploymentTargets call to return the next set of deployment targets 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, a token identifier is also returned. It can be used in a subsequent ListDeploymentTargets call to return the next set of deployment targets in the list.
sourcepub fn build(self) -> ListDeploymentTargetsOutput
pub fn build(self) -> ListDeploymentTargetsOutput
Consumes the builder and constructs a ListDeploymentTargetsOutput.
Trait Implementations§
source§impl Clone for ListDeploymentTargetsOutputBuilder
impl Clone for ListDeploymentTargetsOutputBuilder
source§fn clone(&self) -> ListDeploymentTargetsOutputBuilder
fn clone(&self) -> ListDeploymentTargetsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListDeploymentTargetsOutputBuilder
impl Default for ListDeploymentTargetsOutputBuilder
source§fn default() -> ListDeploymentTargetsOutputBuilder
fn default() -> ListDeploymentTargetsOutputBuilder
source§impl PartialEq for ListDeploymentTargetsOutputBuilder
impl PartialEq for ListDeploymentTargetsOutputBuilder
source§fn eq(&self, other: &ListDeploymentTargetsOutputBuilder) -> bool
fn eq(&self, other: &ListDeploymentTargetsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListDeploymentTargetsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListDeploymentTargetsOutputBuilder
impl RefUnwindSafe for ListDeploymentTargetsOutputBuilder
impl Send for ListDeploymentTargetsOutputBuilder
impl Sync for ListDeploymentTargetsOutputBuilder
impl Unpin for ListDeploymentTargetsOutputBuilder
impl UnwindSafe for ListDeploymentTargetsOutputBuilder
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