pub struct GetParameterInput {
pub name: String,
pub with_decryption: Option<bool>,
}Expand description
Input for the GetParameter operation.
Fields§
§name: StringThe name of the parameter (supports :version and :label selectors).
with_decryption: Option<bool>Whether to decrypt SecureString values.
Trait Implementations§
Source§impl Clone for GetParameterInput
impl Clone for GetParameterInput
Source§fn clone(&self) -> GetParameterInput
fn clone(&self) -> GetParameterInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetParameterInput
impl Debug for GetParameterInput
Source§impl Default for GetParameterInput
impl Default for GetParameterInput
Source§fn default() -> GetParameterInput
fn default() -> GetParameterInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetParameterInput
impl<'de> Deserialize<'de> for GetParameterInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetParameterInput
impl RefUnwindSafe for GetParameterInput
impl Send for GetParameterInput
impl Sync for GetParameterInput
impl Unpin for GetParameterInput
impl UnsafeUnpin for GetParameterInput
impl UnwindSafe for GetParameterInput
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