Struct aws_sdk_ssm::operation::put_parameter::PutParameterOutput
source · #[non_exhaustive]pub struct PutParameterOutput {
pub version: i64,
pub tier: Option<ParameterTier>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.version: 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.
tier: Option<ParameterTier>
The tier assigned to the parameter.
Implementations§
source§impl PutParameterOutput
impl PutParameterOutput
sourcepub fn version(&self) -> i64
pub fn version(&self) -> 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) -> Option<&ParameterTier>
pub fn tier(&self) -> Option<&ParameterTier>
The tier assigned to the parameter.
source§impl PutParameterOutput
impl PutParameterOutput
sourcepub fn builder() -> PutParameterOutputBuilder
pub fn builder() -> PutParameterOutputBuilder
Creates a new builder-style object to manufacture PutParameterOutput
.
Trait Implementations§
source§impl Clone for PutParameterOutput
impl Clone for PutParameterOutput
source§fn clone(&self) -> PutParameterOutput
fn clone(&self) -> PutParameterOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PutParameterOutput
impl Debug for PutParameterOutput
source§impl PartialEq for PutParameterOutput
impl PartialEq for PutParameterOutput
source§fn eq(&self, other: &PutParameterOutput) -> bool
fn eq(&self, other: &PutParameterOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for PutParameterOutput
impl RequestId for PutParameterOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.