[][src]Struct rusoto_signer::DescribeSigningJobResponse

pub struct DescribeSigningJobResponse {
    pub completed_at: Option<f64>,
    pub created_at: Option<f64>,
    pub job_id: Option<String>,
    pub job_invoker: Option<String>,
    pub job_owner: Option<String>,
    pub overrides: Option<SigningPlatformOverrides>,
    pub platform_display_name: Option<String>,
    pub platform_id: Option<String>,
    pub profile_name: Option<String>,
    pub profile_version: Option<String>,
    pub requested_by: Option<String>,
    pub revocation_record: Option<SigningJobRevocationRecord>,
    pub signature_expires_at: Option<f64>,
    pub signed_object: Option<SignedObject>,
    pub signing_material: Option<SigningMaterial>,
    pub signing_parameters: Option<HashMap<String, String>>,
    pub source: Option<Source>,
    pub status: Option<String>,
    pub status_reason: Option<String>,
}

Fields

completed_at: Option<f64>

Date and time that the signing job was completed.

created_at: Option<f64>

Date and time that the signing job was created.

job_id: Option<String>

The ID of the signing job on output.

job_invoker: Option<String>

The IAM entity that initiated the signing job.

job_owner: Option<String>

The AWS account ID of the job owner.

overrides: Option<SigningPlatformOverrides>

A list of any overrides that were applied to the signing operation.

platform_display_name: Option<String>

A human-readable name for the signing platform associated with the signing job.

platform_id: Option<String>

The microcontroller platform to which your signed code image will be distributed.

profile_name: Option<String>

The name of the profile that initiated the signing operation.

profile_version: Option<String>

The version of the signing profile used to initiate the signing job.

requested_by: Option<String>

The IAM principal that requested the signing job.

revocation_record: Option<SigningJobRevocationRecord>

A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp and the ID of the IAM entity that revoked the signature.

signature_expires_at: Option<f64>

Thr expiration timestamp for the signature generated by the signing job.

signed_object: Option<SignedObject>

Name of the S3 bucket where the signed code image is saved by code signing.

signing_material: Option<SigningMaterial>

The Amazon Resource Name (ARN) of your code signing certificate.

signing_parameters: Option<HashMap<String, String>>

Map of user-assigned key-value pairs used during signing. These values contain any information that you specified for use in your signing job.

source: Option<Source>

The object that contains the name of your S3 bucket or your raw code.

status: Option<String>

Status of the signing job.

status_reason: Option<String>

String value that contains the status reason.

Trait Implementations

impl Clone for DescribeSigningJobResponse[src]

impl Debug for DescribeSigningJobResponse[src]

impl Default for DescribeSigningJobResponse[src]

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

impl PartialEq<DescribeSigningJobResponse> for DescribeSigningJobResponse[src]

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