[][src]Struct rusoto_signer::SigningPlatformOverrides

pub struct SigningPlatformOverrides {
    pub signing_configuration: Option<SigningConfigurationOverrides>,
    pub signing_image_format: Option<String>,
}

Any overrides that are applied to the signing configuration of a code signing platform.

Fields

signing_configuration: Option<SigningConfigurationOverrides>

A signing configuration that overrides the default encryption or hash algorithm of a signing job.

signing_image_format: Option<String>

A signed image is a JSON object. When overriding the default signing platform configuration, a customer can select either of two signing formats, JSONEmbedded or JSONDetached. (A third format value, JSON, is reserved for future use.) With JSONEmbedded, the signing image has the payload embedded in it. With JSONDetached, the payload is not be embedded in the signing image.

Trait Implementations

impl Clone for SigningPlatformOverrides[src]

impl Debug for SigningPlatformOverrides[src]

impl Default for SigningPlatformOverrides[src]

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

impl PartialEq<SigningPlatformOverrides> for SigningPlatformOverrides[src]

impl Serialize for SigningPlatformOverrides[src]

impl StructuralPartialEq for SigningPlatformOverrides[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.