Struct aws_sdk_lambda::model::LayerVersionsListItem [−][src]
#[non_exhaustive]pub struct LayerVersionsListItem {
pub layer_version_arn: Option<String>,
pub version: i64,
pub description: Option<String>,
pub created_date: Option<String>,
pub compatible_runtimes: Option<Vec<Runtime>>,
pub license_info: Option<String>,
pub compatible_architectures: Option<Vec<Architecture>>,
}
Expand description
Details about a version of an Lambda layer.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.layer_version_arn: Option<String>
The ARN of the layer version.
version: i64
The version number.
description: Option<String>
The description of the version.
created_date: Option<String>
The date that the version was created, in ISO 8601 format. For example, 2018-11-27T15:10:45.123+0000
.
compatible_runtimes: Option<Vec<Runtime>>
The layer's compatible runtimes.
license_info: Option<String>
The layer's open-source license.
compatible_architectures: Option<Vec<Architecture>>
A list of compatible instruction set architectures.
Implementations
Creates a new builder-style object to manufacture LayerVersionsListItem
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 LayerVersionsListItem
impl Send for LayerVersionsListItem
impl Sync for LayerVersionsListItem
impl Unpin for LayerVersionsListItem
impl UnwindSafe for LayerVersionsListItem
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