pub struct GetFunctionResponse {
pub code: Option<FunctionCodeLocation>,
pub concurrency: Option<Concurrency>,
pub configuration: Option<FunctionConfiguration>,
pub tags: Option<HashMap<String, String>>,
}
Fields§
§code: Option<FunctionCodeLocation>
The deployment package of the function or version.
concurrency: Option<Concurrency>
The function's reserved concurrency.
configuration: Option<FunctionConfiguration>
The configuration of the function or version.
The function's tags.
Trait Implementations§
Source§impl Clone for GetFunctionResponse
impl Clone for GetFunctionResponse
Source§fn clone(&self) -> GetFunctionResponse
fn clone(&self) -> GetFunctionResponse
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 Debug for GetFunctionResponse
impl Debug for GetFunctionResponse
Source§impl Default for GetFunctionResponse
impl Default for GetFunctionResponse
Source§fn default() -> GetFunctionResponse
fn default() -> GetFunctionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFunctionResponse
impl<'de> Deserialize<'de> for GetFunctionResponse
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
Source§impl PartialEq for GetFunctionResponse
impl PartialEq for GetFunctionResponse
impl StructuralPartialEq for GetFunctionResponse
Auto Trait Implementations§
impl Freeze for GetFunctionResponse
impl RefUnwindSafe for GetFunctionResponse
impl Send for GetFunctionResponse
impl Sync for GetFunctionResponse
impl Unpin for GetFunctionResponse
impl UnwindSafe for GetFunctionResponse
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