pub struct GetParameterHistoryInput {
pub name: String,
pub with_decryption: Option<bool>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Expand description
Input for the GetParameterHistory operation.
Fields§
§name: StringThe name of the parameter.
with_decryption: Option<bool>Whether to decrypt SecureString values.
max_results: Option<i32>The maximum number of results per page (1-50, default 50).
next_token: Option<String>The token for the next set of results.
Trait Implementations§
Source§impl Clone for GetParameterHistoryInput
impl Clone for GetParameterHistoryInput
Source§fn clone(&self) -> GetParameterHistoryInput
fn clone(&self) -> GetParameterHistoryInput
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 GetParameterHistoryInput
impl Debug for GetParameterHistoryInput
Source§impl Default for GetParameterHistoryInput
impl Default for GetParameterHistoryInput
Source§fn default() -> GetParameterHistoryInput
fn default() -> GetParameterHistoryInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetParameterHistoryInput
impl<'de> Deserialize<'de> for GetParameterHistoryInput
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 GetParameterHistoryInput
impl RefUnwindSafe for GetParameterHistoryInput
impl Send for GetParameterHistoryInput
impl Sync for GetParameterHistoryInput
impl Unpin for GetParameterHistoryInput
impl UnsafeUnpin for GetParameterHistoryInput
impl UnwindSafe for GetParameterHistoryInput
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