Struct aws_sdk_lambda::types::CodeSigningPolicies
source · #[non_exhaustive]pub struct CodeSigningPolicies {
pub untrusted_artifact_on_deployment: Option<CodeSigningPolicy>,
}Expand description
Code signing configuration policies specify the validation failure action for signature mismatch or expiry.
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.untrusted_artifact_on_deployment: Option<CodeSigningPolicy>Code signing configuration policy for deployment validation failure. If you set the policy to Enforce, Lambda blocks the deployment request if signature validation checks fail. If you set the policy to Warn, Lambda allows the deployment and creates a CloudWatch log.
Default value: Warn
Implementations§
source§impl CodeSigningPolicies
impl CodeSigningPolicies
sourcepub fn untrusted_artifact_on_deployment(&self) -> Option<&CodeSigningPolicy>
pub fn untrusted_artifact_on_deployment(&self) -> Option<&CodeSigningPolicy>
Code signing configuration policy for deployment validation failure. If you set the policy to Enforce, Lambda blocks the deployment request if signature validation checks fail. If you set the policy to Warn, Lambda allows the deployment and creates a CloudWatch log.
Default value: Warn
source§impl CodeSigningPolicies
impl CodeSigningPolicies
sourcepub fn builder() -> CodeSigningPoliciesBuilder
pub fn builder() -> CodeSigningPoliciesBuilder
Creates a new builder-style object to manufacture CodeSigningPolicies.
Trait Implementations§
source§impl Clone for CodeSigningPolicies
impl Clone for CodeSigningPolicies
source§fn clone(&self) -> CodeSigningPolicies
fn clone(&self) -> CodeSigningPolicies
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 CodeSigningPolicies
impl Debug for CodeSigningPolicies
source§impl PartialEq for CodeSigningPolicies
impl PartialEq for CodeSigningPolicies
source§fn eq(&self, other: &CodeSigningPolicies) -> bool
fn eq(&self, other: &CodeSigningPolicies) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CodeSigningPolicies
Auto Trait Implementations§
impl Freeze for CodeSigningPolicies
impl RefUnwindSafe for CodeSigningPolicies
impl Send for CodeSigningPolicies
impl Sync for CodeSigningPolicies
impl Unpin for CodeSigningPolicies
impl UnwindSafe for CodeSigningPolicies
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.