Struct aws_sdk_ssm::types::builders::ResolvedTargetsBuilder
source · #[non_exhaustive]pub struct ResolvedTargetsBuilder { /* private fields */ }
Expand description
A builder for ResolvedTargets
.
Implementations§
source§impl ResolvedTargetsBuilder
impl ResolvedTargetsBuilder
sourcepub fn parameter_values(self, input: impl Into<String>) -> Self
pub fn parameter_values(self, input: impl Into<String>) -> Self
Appends an item to parameter_values
.
To override the contents of this collection use set_parameter_values
.
A list of parameter values sent to targets that resolved during the Automation execution.
sourcepub fn set_parameter_values(self, input: Option<Vec<String>>) -> Self
pub fn set_parameter_values(self, input: Option<Vec<String>>) -> Self
A list of parameter values sent to targets that resolved during the Automation execution.
sourcepub fn get_parameter_values(&self) -> &Option<Vec<String>>
pub fn get_parameter_values(&self) -> &Option<Vec<String>>
A list of parameter values sent to targets that resolved during the Automation execution.
sourcepub fn truncated(self, input: bool) -> Self
pub fn truncated(self, input: bool) -> Self
A boolean value indicating whether the resolved target list is truncated.
sourcepub fn set_truncated(self, input: Option<bool>) -> Self
pub fn set_truncated(self, input: Option<bool>) -> Self
A boolean value indicating whether the resolved target list is truncated.
sourcepub fn get_truncated(&self) -> &Option<bool>
pub fn get_truncated(&self) -> &Option<bool>
A boolean value indicating whether the resolved target list is truncated.
sourcepub fn build(self) -> ResolvedTargets
pub fn build(self) -> ResolvedTargets
Consumes the builder and constructs a ResolvedTargets
.
Trait Implementations§
source§impl Clone for ResolvedTargetsBuilder
impl Clone for ResolvedTargetsBuilder
source§fn clone(&self) -> ResolvedTargetsBuilder
fn clone(&self) -> ResolvedTargetsBuilder
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 Debug for ResolvedTargetsBuilder
impl Debug for ResolvedTargetsBuilder
source§impl Default for ResolvedTargetsBuilder
impl Default for ResolvedTargetsBuilder
source§fn default() -> ResolvedTargetsBuilder
fn default() -> ResolvedTargetsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ResolvedTargetsBuilder
impl PartialEq for ResolvedTargetsBuilder
impl StructuralPartialEq for ResolvedTargetsBuilder
Auto Trait Implementations§
impl Freeze for ResolvedTargetsBuilder
impl RefUnwindSafe for ResolvedTargetsBuilder
impl Send for ResolvedTargetsBuilder
impl Sync for ResolvedTargetsBuilder
impl Unpin for ResolvedTargetsBuilder
impl UnwindSafe for ResolvedTargetsBuilder
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> 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)
🔬This is a nightly-only experimental API. (
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>
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.