Struct aws_sdk_lambda::model::LayerVersionContentInput [−][src]
#[non_exhaustive]pub struct LayerVersionContentInput {
pub s3_bucket: Option<String>,
pub s3_key: Option<String>,
pub s3_object_version: Option<String>,
pub zip_file: Option<Blob>,
}
Expand description
A ZIP archive that contains the contents of an Lambda layer. You can specify either an Amazon S3 location, or upload a layer archive directly.
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.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<Blob>
The base64-encoded contents of the layer archive. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.
Implementations
Creates a new builder-style object to manufacture LayerVersionContentInput
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 LayerVersionContentInput
impl Send for LayerVersionContentInput
impl Sync for LayerVersionContentInput
impl Unpin for LayerVersionContentInput
impl UnwindSafe for LayerVersionContentInput
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