pub struct LayerVersionContentInput {
pub s3_bucket: Option<String>,
pub s3_key: Option<String>,
pub s3_object_version: Option<String>,
pub zip_file: Option<Bytes>,
}
Expand description
A ZIP archive that contains the contents of an AWS Lambda layer. You can specify either an Amazon S3 location, or upload a layer archive directly.
Fields§
§s3_bucket: Option<String>
The Amazon S3 bucket of the layer archive.
s3_key: Option<String>
The Amazon S3 key of the layer archive.
s3_object_version: Option<String>
For versioned objects, the version of the layer archive object to use.
zip_file: Option<Bytes>
The base64-encoded contents of the layer archive. AWS SDK and AWS CLI clients handle the encoding for you.
Trait Implementations§
Source§impl Clone for LayerVersionContentInput
impl Clone for LayerVersionContentInput
Source§fn clone(&self) -> LayerVersionContentInput
fn clone(&self) -> LayerVersionContentInput
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 LayerVersionContentInput
impl Debug for LayerVersionContentInput
Source§impl Default for LayerVersionContentInput
impl Default for LayerVersionContentInput
Source§fn default() -> LayerVersionContentInput
fn default() -> LayerVersionContentInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for LayerVersionContentInput
impl PartialEq for LayerVersionContentInput
Source§impl Serialize for LayerVersionContentInput
impl Serialize for LayerVersionContentInput
impl StructuralPartialEq for LayerVersionContentInput
Auto Trait Implementations§
impl !Freeze for LayerVersionContentInput
impl RefUnwindSafe for LayerVersionContentInput
impl Send for LayerVersionContentInput
impl Sync for LayerVersionContentInput
impl Unpin for LayerVersionContentInput
impl UnwindSafe for LayerVersionContentInput
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