#[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 ==
.