Struct aws_sdk_lambda::operation::get_function::GetFunctionOutput
source · #[non_exhaustive]pub struct GetFunctionOutput {
pub configuration: Option<FunctionConfiguration>,
pub code: Option<FunctionCodeLocation>,
pub tags: Option<HashMap<String, String>>,
pub concurrency: Option<Concurrency>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.configuration: Option<FunctionConfiguration>
The configuration of the function or version.
code: Option<FunctionCodeLocation>
The deployment package of the function or version.
The function's tags.
concurrency: Option<Concurrency>
The function's reserved concurrency.
Implementations§
source§impl GetFunctionOutput
impl GetFunctionOutput
sourcepub fn configuration(&self) -> Option<&FunctionConfiguration>
pub fn configuration(&self) -> Option<&FunctionConfiguration>
The configuration of the function or version.
sourcepub fn code(&self) -> Option<&FunctionCodeLocation>
pub fn code(&self) -> Option<&FunctionCodeLocation>
The deployment package of the function or version.
The function's tags.
sourcepub fn concurrency(&self) -> Option<&Concurrency>
pub fn concurrency(&self) -> Option<&Concurrency>
The function's reserved concurrency.
source§impl GetFunctionOutput
impl GetFunctionOutput
sourcepub fn builder() -> GetFunctionOutputBuilder
pub fn builder() -> GetFunctionOutputBuilder
Creates a new builder-style object to manufacture GetFunctionOutput
.
Trait Implementations§
source§impl Clone for GetFunctionOutput
impl Clone for GetFunctionOutput
source§fn clone(&self) -> GetFunctionOutput
fn clone(&self) -> GetFunctionOutput
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 GetFunctionOutput
impl Debug for GetFunctionOutput
source§impl PartialEq for GetFunctionOutput
impl PartialEq for GetFunctionOutput
source§fn eq(&self, other: &GetFunctionOutput) -> bool
fn eq(&self, other: &GetFunctionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetFunctionOutput
impl RequestId for GetFunctionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetFunctionOutput
Auto Trait Implementations§
impl Freeze for GetFunctionOutput
impl RefUnwindSafe for GetFunctionOutput
impl Send for GetFunctionOutput
impl Sync for GetFunctionOutput
impl Unpin for GetFunctionOutput
impl UnwindSafe for GetFunctionOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.