Struct aws_sdk_lambda::model::LayersListItem [−][src]
#[non_exhaustive]pub struct LayersListItem {
pub layer_name: Option<String>,
pub layer_arn: Option<String>,
pub latest_matching_version: Option<LayerVersionsListItem>,
}
Expand description
Details about an Lambda layer.
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.layer_name: Option<String>
The name of the layer.
layer_arn: Option<String>
The Amazon Resource Name (ARN) of the function layer.
latest_matching_version: Option<LayerVersionsListItem>
The newest version of the layer.
Implementations
Creates a new builder-style object to manufacture LayersListItem
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LayersListItem
impl Send for LayersListItem
impl Sync for LayersListItem
impl Unpin for LayersListItem
impl UnwindSafe for LayersListItem
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more