pub struct LayerVersion {
pub layer_name: String,
pub layer_arn: String,
pub version_arn: String,
pub version: u64,
pub description: String,
pub compatible_runtimes: Vec<String>,
pub code_sha256: String,
pub code_size: u64,
pub code_data: Option<Vec<u8>>,
pub created_date: String,
}Fields§
§layer_name: StringLayer name kept for reference / admin console.
layer_arn: String§version_arn: String§version: u64§description: String§compatible_runtimes: Vec<String>§code_sha256: String§code_size: u64§code_data: Option<Vec<u8>>Raw zip bytes stored for future execution support.
created_date: StringTrait Implementations§
Source§impl Clone for LayerVersion
impl Clone for LayerVersion
Source§fn clone(&self) -> LayerVersion
fn clone(&self) -> LayerVersion
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for LayerVersion
impl RefUnwindSafe for LayerVersion
impl Send for LayerVersion
impl Sync for LayerVersion
impl Unpin for LayerVersion
impl UnsafeUnpin for LayerVersion
impl UnwindSafe for LayerVersion
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