Struct aws_sdk_lambda::types::LayerVersionContentOutput
source · #[non_exhaustive]pub struct LayerVersionContentOutput {
pub location: Option<String>,
pub code_sha256: Option<String>,
pub code_size: i64,
pub signing_profile_version_arn: Option<String>,
pub signing_job_arn: Option<String>,
}
Expand description
Details about a version of an Lambda layer.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.location: Option<String>
A link to the layer archive in Amazon S3 that is valid for 10 minutes.
code_sha256: Option<String>
The SHA-256 hash of the layer archive.
code_size: i64
The size of the layer archive in bytes.
signing_profile_version_arn: Option<String>
The Amazon Resource Name (ARN) for a signing profile version.
signing_job_arn: Option<String>
The Amazon Resource Name (ARN) of a signing job.
Implementations§
source§impl LayerVersionContentOutput
impl LayerVersionContentOutput
sourcepub fn location(&self) -> Option<&str>
pub fn location(&self) -> Option<&str>
A link to the layer archive in Amazon S3 that is valid for 10 minutes.
sourcepub fn code_sha256(&self) -> Option<&str>
pub fn code_sha256(&self) -> Option<&str>
The SHA-256 hash of the layer archive.
sourcepub fn signing_profile_version_arn(&self) -> Option<&str>
pub fn signing_profile_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for a signing profile version.
sourcepub fn signing_job_arn(&self) -> Option<&str>
pub fn signing_job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a signing job.
source§impl LayerVersionContentOutput
impl LayerVersionContentOutput
sourcepub fn builder() -> LayerVersionContentOutputBuilder
pub fn builder() -> LayerVersionContentOutputBuilder
Creates a new builder-style object to manufacture LayerVersionContentOutput
.
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 PartialEq for LayerVersionContentOutput
impl PartialEq for LayerVersionContentOutput
source§fn eq(&self, other: &LayerVersionContentOutput) -> bool
fn eq(&self, other: &LayerVersionContentOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LayerVersionContentOutput
Auto Trait Implementations§
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.