[][src]Struct rusoto_signer::SigningPlatform

pub struct SigningPlatform {
    pub category: Option<String>,
    pub display_name: Option<String>,
    pub max_size_in_mb: Option<i64>,
    pub partner: Option<String>,
    pub platform_id: Option<String>,
    pub revocation_supported: Option<bool>,
    pub signing_configuration: Option<SigningConfiguration>,
    pub signing_image_format: Option<SigningImageFormat>,
    pub target: Option<String>,
}

Contains information about the signing configurations and parameters that are used to perform a code signing job.

Fields

category: Option<String>

The category of a code signing platform.

display_name: Option<String>

The display name of a code signing platform.

max_size_in_mb: Option<i64>

The maximum size (in MB) of code that can be signed by a code signing platform.

partner: Option<String>

Any partner entities linked to a code signing platform.

platform_id: Option<String>

The ID of a code signing; platform.

revocation_supported: Option<bool>

Indicates whether revocation is supported for the platform.

signing_configuration: Option<SigningConfiguration>

The configuration of a code signing platform. This includes the designated hash algorithm and encryption algorithm of a signing platform.

signing_image_format: Option<SigningImageFormat>target: Option<String>

The types of targets that can be signed by a code signing platform.

Trait Implementations

impl Clone for SigningPlatform[src]

impl Debug for SigningPlatform[src]

impl Default for SigningPlatform[src]

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

impl PartialEq<SigningPlatform> for SigningPlatform[src]

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