[][src]Struct rusoto_signer::SignerClient

pub struct SignerClient { /* fields omitted */ }

A client for the signer API.

Implementations

impl SignerClient[src]

pub fn new(region: Region) -> SignerClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> SignerClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> SignerClient[src]

Trait Implementations

impl Clone for SignerClient[src]

impl Signer for SignerClient[src]

pub fn cancel_signing_profile<'life0, 'async_trait>(
    &'life0 self,
    input: CancelSigningProfileRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<CancelSigningProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Changes the state of an ACTIVE signing profile to CANCELED. A canceled profile is still viewable with the ListSigningProfiles operation, but it cannot perform new signing jobs, and is deleted two years after cancelation.

pub fn describe_signing_job<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeSigningJobRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeSigningJobResponse, RusotoError<DescribeSigningJobError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information about a specific code signing job. You specify the job by using the jobId value that is returned by the StartSigningJob operation.

pub fn get_signing_platform<'life0, 'async_trait>(
    &'life0 self,
    input: GetSigningPlatformRequest
) -> Pin<Box<dyn Future<Output = Result<GetSigningPlatformResponse, RusotoError<GetSigningPlatformError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information on a specific signing platform.

pub fn get_signing_profile<'life0, 'async_trait>(
    &'life0 self,
    input: GetSigningProfileRequest
) -> Pin<Box<dyn Future<Output = Result<GetSigningProfileResponse, RusotoError<GetSigningProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information on a specific signing profile.

pub fn list_signing_jobs<'life0, 'async_trait>(
    &'life0 self,
    input: ListSigningJobsRequest
) -> Pin<Box<dyn Future<Output = Result<ListSigningJobsResponse, RusotoError<ListSigningJobsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists all your signing jobs. You can use the maxResults parameter to limit the number of signing jobs that are returned in the response. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.

pub fn list_signing_platforms<'life0, 'async_trait>(
    &'life0 self,
    input: ListSigningPlatformsRequest
) -> Pin<Box<dyn Future<Output = Result<ListSigningPlatformsResponse, RusotoError<ListSigningPlatformsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists all signing platforms available in code signing that match the request parameters. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.

pub fn list_signing_profiles<'life0, 'async_trait>(
    &'life0 self,
    input: ListSigningProfilesRequest
) -> Pin<Box<dyn Future<Output = Result<ListSigningProfilesResponse, RusotoError<ListSigningProfilesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists all available signing profiles in your AWS account. Returns only profiles with an ACTIVE status unless the includeCanceled request field is set to true. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.

pub fn list_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForResourceRequest
) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of the tags associated with a signing profile resource.

pub fn put_signing_profile<'life0, 'async_trait>(
    &'life0 self,
    input: PutSigningProfileRequest
) -> Pin<Box<dyn Future<Output = Result<PutSigningProfileResponse, RusotoError<PutSigningProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a signing profile. A signing profile is a code signing template that can be used to carry out a pre-defined signing job. For more information, see http://docs.aws.amazon.com/signer/latest/developerguide/gs-profile.html

pub fn start_signing_job<'life0, 'async_trait>(
    &'life0 self,
    input: StartSigningJobRequest
) -> Pin<Box<dyn Future<Output = Result<StartSigningJobResponse, RusotoError<StartSigningJobError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Initiates a signing job to be performed on the code provided. Signing jobs are viewable by the ListSigningJobs operation for two years after they are performed. Note the following requirements:

  • You must create an Amazon S3 source bucket. For more information, see Create a Bucket in the Amazon S3 Getting Started Guide.

  • Your S3 source bucket must be version enabled.

  • You must create an S3 destination bucket. Code signing uses your S3 destination bucket to write your signed code.

  • You specify the name of the source and destination buckets when calling the StartSigningJob operation.

  • You must also specify a request token that identifies your request to code signing.

You can call the DescribeSigningJob and the ListSigningJobs actions after you call StartSigningJob.

For a Java example that shows how to use this action, see http://docs.aws.amazon.com/acm/latest/userguide/

pub fn tag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: TagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<TagResourceResponse, RusotoError<TagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds one or more tags to a signing profile. Tags are labels that you can use to identify and organize your AWS resources. Each tag consists of a key and an optional value. To specify the signing profile, use its Amazon Resource Name (ARN). To specify the tag, use a key-value pair.

pub fn untag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UntagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<UntagResourceResponse, RusotoError<UntagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes one or more tags from a signing profile. To remove the tags, specify a list of tag keys.

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> 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.