pub struct ExtensionResponseParameterField {
pub arn: String,
pub data_type: String,
pub last_modified_date: String,
pub name: String,
pub type: String,
pub value: String,
pub version: u64,
}
Expand description
A parameter returned by the AWS Lambda extension, as structured JSON
Fields§
§arn: String
The parameter’s ARN (Amazon Resource Name) full path.
data_type: String
The data type of the parameter (e.g. text)
last_modified_date: String
The date the parameter was last modified
name: String
The parameter’s name.
type: String
The date the parameter’s type (e.g. String
, StringList
, or SecureString
).
value: String
The value of the parameter (this is the field that gets returned by Parameter::get_raw()
).
version: u64
The date the parameter’s version.
Trait Implementations§
Source§impl Clone for ExtensionResponseParameterField
impl Clone for ExtensionResponseParameterField
Source§fn clone(&self) -> ExtensionResponseParameterField
fn clone(&self) -> ExtensionResponseParameterField
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for ExtensionResponseParameterField
impl<'de> Deserialize<'de> for ExtensionResponseParameterField
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 ExtensionResponseParameterField
impl RefUnwindSafe for ExtensionResponseParameterField
impl Send for ExtensionResponseParameterField
impl Sync for ExtensionResponseParameterField
impl Unpin for ExtensionResponseParameterField
impl UnwindSafe for ExtensionResponseParameterField
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