Struct aws_sdk_lambda::types::ImageConfigResponse
source · #[non_exhaustive]pub struct ImageConfigResponse {
pub image_config: Option<ImageConfig>,
pub error: Option<ImageConfigError>,
}
Expand description
Response to a GetFunctionConfiguration
request.
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.image_config: Option<ImageConfig>
Configuration values that override the container image Dockerfile.
error: Option<ImageConfigError>
Error response to GetFunctionConfiguration
.
Implementations§
source§impl ImageConfigResponse
impl ImageConfigResponse
sourcepub fn image_config(&self) -> Option<&ImageConfig>
pub fn image_config(&self) -> Option<&ImageConfig>
Configuration values that override the container image Dockerfile.
sourcepub fn error(&self) -> Option<&ImageConfigError>
pub fn error(&self) -> Option<&ImageConfigError>
Error response to GetFunctionConfiguration
.
source§impl ImageConfigResponse
impl ImageConfigResponse
sourcepub fn builder() -> ImageConfigResponseBuilder
pub fn builder() -> ImageConfigResponseBuilder
Creates a new builder-style object to manufacture ImageConfigResponse
.
Trait Implementations§
source§impl Clone for ImageConfigResponse
impl Clone for ImageConfigResponse
source§fn clone(&self) -> ImageConfigResponse
fn clone(&self) -> ImageConfigResponse
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 ImageConfigResponse
impl Debug for ImageConfigResponse
source§impl PartialEq for ImageConfigResponse
impl PartialEq for ImageConfigResponse
source§fn eq(&self, other: &ImageConfigResponse) -> bool
fn eq(&self, other: &ImageConfigResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImageConfigResponse
Auto Trait Implementations§
impl RefUnwindSafe for ImageConfigResponse
impl Send for ImageConfigResponse
impl Sync for ImageConfigResponse
impl Unpin for ImageConfigResponse
impl UnwindSafe for ImageConfigResponse
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.