pub struct LayerVersionContentOutput {
pub code_sha_256: Option<String>,
pub code_size: Option<i64>,
pub location: Option<String>,
}
Expand description
Details about a version of an AWS Lambda layer.
Fields§
§code_sha_256: Option<String>
The SHA-256 hash of the layer archive.
code_size: Option<i64>
The size of the layer archive in bytes.
location: Option<String>
A link to the layer archive in Amazon S3 that is valid for 10 minutes.
Trait Implementations§
Source§impl Clone for LayerVersionContentOutput
impl Clone for LayerVersionContentOutput
Source§fn clone(&self) -> LayerVersionContentOutput
fn clone(&self) -> LayerVersionContentOutput
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 LayerVersionContentOutput
impl Debug for LayerVersionContentOutput
Source§impl Default for LayerVersionContentOutput
impl Default for LayerVersionContentOutput
Source§fn default() -> LayerVersionContentOutput
fn default() -> LayerVersionContentOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LayerVersionContentOutput
impl<'de> Deserialize<'de> for LayerVersionContentOutput
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
impl StructuralPartialEq for LayerVersionContentOutput
Auto Trait Implementations§
impl Freeze for LayerVersionContentOutput
impl RefUnwindSafe for LayerVersionContentOutput
impl Send for LayerVersionContentOutput
impl Sync for LayerVersionContentOutput
impl Unpin for LayerVersionContentOutput
impl UnwindSafe for LayerVersionContentOutput
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