Struct aws_sdk_ssm::operation::label_parameter_version::builders::LabelParameterVersionOutputBuilder
source · #[non_exhaustive]pub struct LabelParameterVersionOutputBuilder { /* private fields */ }
Expand description
A builder for LabelParameterVersionOutput
.
Implementations§
source§impl LabelParameterVersionOutputBuilder
impl LabelParameterVersionOutputBuilder
sourcepub fn invalid_labels(self, input: impl Into<String>) -> Self
pub fn invalid_labels(self, input: impl Into<String>) -> Self
Appends an item to invalid_labels
.
To override the contents of this collection use set_invalid_labels
.
The label doesn't meet the requirements. For information about parameter label requirements, see Working with parameter labels in the Amazon Web Services Systems Manager User Guide.
sourcepub fn set_invalid_labels(self, input: Option<Vec<String>>) -> Self
pub fn set_invalid_labels(self, input: Option<Vec<String>>) -> Self
The label doesn't meet the requirements. For information about parameter label requirements, see Working with parameter labels in the Amazon Web Services Systems Manager User Guide.
sourcepub fn get_invalid_labels(&self) -> &Option<Vec<String>>
pub fn get_invalid_labels(&self) -> &Option<Vec<String>>
The label doesn't meet the requirements. For information about parameter label requirements, see Working with parameter labels in the Amazon Web Services Systems Manager User Guide.
sourcepub fn parameter_version(self, input: i64) -> Self
pub fn parameter_version(self, input: i64) -> Self
The version of the parameter that has been labeled.
sourcepub fn set_parameter_version(self, input: Option<i64>) -> Self
pub fn set_parameter_version(self, input: Option<i64>) -> Self
The version of the parameter that has been labeled.
sourcepub fn get_parameter_version(&self) -> &Option<i64>
pub fn get_parameter_version(&self) -> &Option<i64>
The version of the parameter that has been labeled.
sourcepub fn build(self) -> LabelParameterVersionOutput
pub fn build(self) -> LabelParameterVersionOutput
Consumes the builder and constructs a LabelParameterVersionOutput
.
Trait Implementations§
source§impl Clone for LabelParameterVersionOutputBuilder
impl Clone for LabelParameterVersionOutputBuilder
source§fn clone(&self) -> LabelParameterVersionOutputBuilder
fn clone(&self) -> LabelParameterVersionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for LabelParameterVersionOutputBuilder
impl Default for LabelParameterVersionOutputBuilder
source§fn default() -> LabelParameterVersionOutputBuilder
fn default() -> LabelParameterVersionOutputBuilder
source§impl PartialEq for LabelParameterVersionOutputBuilder
impl PartialEq for LabelParameterVersionOutputBuilder
source§fn eq(&self, other: &LabelParameterVersionOutputBuilder) -> bool
fn eq(&self, other: &LabelParameterVersionOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LabelParameterVersionOutputBuilder
Auto Trait Implementations§
impl Freeze for LabelParameterVersionOutputBuilder
impl RefUnwindSafe for LabelParameterVersionOutputBuilder
impl Send for LabelParameterVersionOutputBuilder
impl Sync for LabelParameterVersionOutputBuilder
impl Unpin for LabelParameterVersionOutputBuilder
impl UnwindSafe for LabelParameterVersionOutputBuilder
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