[][src]Struct rusoto_signer::SigningJob

pub struct SigningJob {
    pub created_at: Option<f64>,
    pub is_revoked: Option<bool>,
    pub job_id: Option<String>,
    pub job_invoker: Option<String>,
    pub job_owner: Option<String>,
    pub platform_display_name: Option<String>,
    pub platform_id: Option<String>,
    pub profile_name: Option<String>,
    pub profile_version: Option<String>,
    pub signature_expires_at: Option<f64>,
    pub signed_object: Option<SignedObject>,
    pub signing_material: Option<SigningMaterial>,
    pub source: Option<Source>,
    pub status: Option<String>,
}

Contains information about a signing job.

Fields

created_at: Option<f64>

The date and time that the signing job was created.

is_revoked: Option<bool>

Indicates whether the signing job is revoked.

job_id: Option<String>

The ID of the signing job.

job_invoker: Option<String>

The AWS account ID of the job invoker.

job_owner: Option<String>

The AWS account ID of the job owner.

platform_display_name: Option<String>

The name of a signing platform.

platform_id: Option<String>

The unique identifier for a signing platform.

profile_name: Option<String>

The name of the signing profile that created a signing job.

profile_version: Option<String>

The version of the signing profile that created a signing job.

signature_expires_at: Option<f64>

The time when the signature of a signing job expires.

signed_object: Option<SignedObject>

A SignedObject structure that contains information about a signing job's signed code image.

signing_material: Option<SigningMaterial>

A SigningMaterial object that contains the Amazon Resource Name (ARN) of the certificate used for the signing job.

source: Option<Source>

A Source that contains information about a signing job's code image source.

status: Option<String>

The status of the signing job.

Trait Implementations

impl Clone for SigningJob[src]

impl Debug for SigningJob[src]

impl Default for SigningJob[src]

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

impl PartialEq<SigningJob> for SigningJob[src]

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