pub struct GetParameterHistoryOutput {
pub parameters: Vec<ParameterHistory>,
pub next_token: Option<String>,
}Expand description
Output for the GetParameterHistory operation.
Fields§
§parameters: Vec<ParameterHistory>The version history entries.
next_token: Option<String>The token for the next page of results, if any.
Trait Implementations§
Source§impl Clone for GetParameterHistoryOutput
impl Clone for GetParameterHistoryOutput
Source§fn clone(&self) -> GetParameterHistoryOutput
fn clone(&self) -> GetParameterHistoryOutput
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 GetParameterHistoryOutput
impl Debug for GetParameterHistoryOutput
Source§impl Default for GetParameterHistoryOutput
impl Default for GetParameterHistoryOutput
Source§fn default() -> GetParameterHistoryOutput
fn default() -> GetParameterHistoryOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetParameterHistoryOutput
impl<'de> Deserialize<'de> for GetParameterHistoryOutput
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 GetParameterHistoryOutput
impl RefUnwindSafe for GetParameterHistoryOutput
impl Send for GetParameterHistoryOutput
impl Sync for GetParameterHistoryOutput
impl Unpin for GetParameterHistoryOutput
impl UnsafeUnpin for GetParameterHistoryOutput
impl UnwindSafe for GetParameterHistoryOutput
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