[][src]Struct rusoto_signer::ListSigningJobsRequest

pub struct ListSigningJobsRequest {
    pub is_revoked: Option<bool>,
    pub job_invoker: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub platform_id: Option<String>,
    pub requested_by: Option<String>,
    pub signature_expires_after: Option<f64>,
    pub signature_expires_before: Option<f64>,
    pub status: Option<String>,
}

Fields

is_revoked: Option<bool>

Filters results to return only signing jobs with revoked signatures.

job_invoker: Option<String>

Filters results to return only signing jobs initiated by a specified IAM entity.

max_results: Option<i64>

Specifies the maximum number of items to return in the response. Use this parameter when paginating results. If additional items exist beyond the number you specify, the nextToken element is set in the response. Use the nextToken value in a subsequent request to retrieve additional items.

next_token: Option<String>

String for specifying the next set of paginated results to return. After you receive a response with truncated results, use this parameter in a subsequent request. Set it to the value of nextToken from the response that you just received.

platform_id: Option<String>

The ID of microcontroller platform that you specified for the distribution of your code image.

requested_by: Option<String>

The IAM principal that requested the signing job.

signature_expires_after: Option<f64>

Filters results to return only signing jobs with signatures expiring after a specified timestamp.

signature_expires_before: Option<f64>

Filters results to return only signing jobs with signatures expiring before a specified timestamp.

status: Option<String>

A status value with which to filter your results.

Trait Implementations

impl Clone for ListSigningJobsRequest[src]

impl Debug for ListSigningJobsRequest[src]

impl Default for ListSigningJobsRequest[src]

impl PartialEq<ListSigningJobsRequest> for ListSigningJobsRequest[src]

impl Serialize for ListSigningJobsRequest[src]

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