[][src]Struct rusoto_lambda::CodeSigningConfig

pub struct CodeSigningConfig {
    pub allowed_publishers: AllowedPublishers,
    pub code_signing_config_arn: String,
    pub code_signing_config_id: String,
    pub code_signing_policies: CodeSigningPolicies,
    pub description: Option<String>,
    pub last_modified: String,
}

Details about a Code signing configuration.

Fields

allowed_publishers: AllowedPublishers

List of allowed publishers.

code_signing_config_arn: String

The Amazon Resource Name (ARN) of the Code signing configuration.

code_signing_config_id: String

Unique identifer for the Code signing configuration.

code_signing_policies: CodeSigningPolicies

The code signing policy controls the validation failure action for signature mismatch or expiry.

description: Option<String>

Code signing configuration description.

last_modified: String

The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

Trait Implementations

impl Clone for CodeSigningConfig[src]

impl Debug for CodeSigningConfig[src]

impl Default for CodeSigningConfig[src]

impl<'de> Deserialize<'de> for CodeSigningConfig[src]

impl PartialEq<CodeSigningConfig> for CodeSigningConfig[src]

impl StructuralPartialEq for CodeSigningConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.