Struct aws_sdk_lambda::types::CodeSigningConfig
source · #[non_exhaustive]pub struct CodeSigningConfig {
pub code_signing_config_id: String,
pub code_signing_config_arn: String,
pub description: Option<String>,
pub allowed_publishers: Option<AllowedPublishers>,
pub code_signing_policies: Option<CodeSigningPolicies>,
pub last_modified: String,
}Expand description
Details about a Code signing configuration.
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.code_signing_config_id: StringUnique identifer for the Code signing configuration.
code_signing_config_arn: StringThe Amazon Resource Name (ARN) of the Code signing configuration.
description: Option<String>Code signing configuration description.
allowed_publishers: Option<AllowedPublishers>List of allowed publishers.
code_signing_policies: Option<CodeSigningPolicies>The code signing policy controls the validation failure action for signature mismatch or expiry.
last_modified: StringThe date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
Implementations§
source§impl CodeSigningConfig
impl CodeSigningConfig
sourcepub fn code_signing_config_id(&self) -> &str
pub fn code_signing_config_id(&self) -> &str
Unique identifer for the Code signing configuration.
sourcepub fn code_signing_config_arn(&self) -> &str
pub fn code_signing_config_arn(&self) -> &str
The Amazon Resource Name (ARN) of the Code signing configuration.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Code signing configuration description.
sourcepub fn allowed_publishers(&self) -> Option<&AllowedPublishers>
pub fn allowed_publishers(&self) -> Option<&AllowedPublishers>
List of allowed publishers.
sourcepub fn code_signing_policies(&self) -> Option<&CodeSigningPolicies>
pub fn code_signing_policies(&self) -> Option<&CodeSigningPolicies>
The code signing policy controls the validation failure action for signature mismatch or expiry.
sourcepub fn last_modified(&self) -> &str
pub fn last_modified(&self) -> &str
The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
source§impl CodeSigningConfig
impl CodeSigningConfig
sourcepub fn builder() -> CodeSigningConfigBuilder
pub fn builder() -> CodeSigningConfigBuilder
Creates a new builder-style object to manufacture CodeSigningConfig.
Trait Implementations§
source§impl Clone for CodeSigningConfig
impl Clone for CodeSigningConfig
source§fn clone(&self) -> CodeSigningConfig
fn clone(&self) -> CodeSigningConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CodeSigningConfig
impl Debug for CodeSigningConfig
source§impl PartialEq for CodeSigningConfig
impl PartialEq for CodeSigningConfig
impl StructuralPartialEq for CodeSigningConfig
Auto Trait Implementations§
impl Freeze for CodeSigningConfig
impl RefUnwindSafe for CodeSigningConfig
impl Send for CodeSigningConfig
impl Sync for CodeSigningConfig
impl Unpin for CodeSigningConfig
impl UnwindSafe for CodeSigningConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more