#[non_exhaustive]pub struct PutParameterOutputBuilder { /* private fields */ }
Expand description
A builder for PutParameterOutput
.
Implementations§
source§impl PutParameterOutputBuilder
impl PutParameterOutputBuilder
sourcepub fn version(self, input: i64) -> Self
pub fn version(self, input: i64) -> Self
The new version number of a parameter. If you edit a parameter value, Parameter Store automatically creates a new version and assigns this new version a unique ID. You can reference a parameter version ID in API operations or in Systems Manager documents (SSM documents). By default, if you don't specify a specific version, the system returns the latest parameter value when a parameter is called.
sourcepub fn set_version(self, input: Option<i64>) -> Self
pub fn set_version(self, input: Option<i64>) -> Self
The new version number of a parameter. If you edit a parameter value, Parameter Store automatically creates a new version and assigns this new version a unique ID. You can reference a parameter version ID in API operations or in Systems Manager documents (SSM documents). By default, if you don't specify a specific version, the system returns the latest parameter value when a parameter is called.
sourcepub fn get_version(&self) -> &Option<i64>
pub fn get_version(&self) -> &Option<i64>
The new version number of a parameter. If you edit a parameter value, Parameter Store automatically creates a new version and assigns this new version a unique ID. You can reference a parameter version ID in API operations or in Systems Manager documents (SSM documents). By default, if you don't specify a specific version, the system returns the latest parameter value when a parameter is called.
sourcepub fn tier(self, input: ParameterTier) -> Self
pub fn tier(self, input: ParameterTier) -> Self
The tier assigned to the parameter.
sourcepub fn set_tier(self, input: Option<ParameterTier>) -> Self
pub fn set_tier(self, input: Option<ParameterTier>) -> Self
The tier assigned to the parameter.
sourcepub fn get_tier(&self) -> &Option<ParameterTier>
pub fn get_tier(&self) -> &Option<ParameterTier>
The tier assigned to the parameter.
sourcepub fn build(self) -> PutParameterOutput
pub fn build(self) -> PutParameterOutput
Consumes the builder and constructs a PutParameterOutput
.
Trait Implementations§
source§impl Clone for PutParameterOutputBuilder
impl Clone for PutParameterOutputBuilder
source§fn clone(&self) -> PutParameterOutputBuilder
fn clone(&self) -> PutParameterOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PutParameterOutputBuilder
impl Debug for PutParameterOutputBuilder
source§impl Default for PutParameterOutputBuilder
impl Default for PutParameterOutputBuilder
source§fn default() -> PutParameterOutputBuilder
fn default() -> PutParameterOutputBuilder
source§impl PartialEq for PutParameterOutputBuilder
impl PartialEq for PutParameterOutputBuilder
source§fn eq(&self, other: &PutParameterOutputBuilder) -> bool
fn eq(&self, other: &PutParameterOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutParameterOutputBuilder
Auto Trait Implementations§
impl Freeze for PutParameterOutputBuilder
impl RefUnwindSafe for PutParameterOutputBuilder
impl Send for PutParameterOutputBuilder
impl Sync for PutParameterOutputBuilder
impl Unpin for PutParameterOutputBuilder
impl UnwindSafe for PutParameterOutputBuilder
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