1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartSigningJob`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`source(Source)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::source) / [`set_source(Option<Source>)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::set_source):<br>required: **true**<br><p>The S3 bucket that contains the object to sign or a BLOB that contains your raw code.</p><br>
    ///   - [`destination(Destination)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::destination) / [`set_destination(Option<Destination>)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::set_destination):<br>required: **true**<br><p>The S3 bucket in which to save your signed object. The destination contains the name of your bucket and an optional prefix.</p><br>
    ///   - [`profile_name(impl Into<String>)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::profile_name) / [`set_profile_name(Option<String>)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::set_profile_name):<br>required: **true**<br><p>The name of the signing profile.</p><br>
    ///   - [`client_request_token(impl Into<String>)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::set_client_request_token):<br>required: **true**<br><p>String that identifies the signing request. All calls after the first that use this token return the same response as the first call.</p><br>
    ///   - [`profile_owner(impl Into<String>)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::profile_owner) / [`set_profile_owner(Option<String>)`](crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::set_profile_owner):<br>required: **false**<br><p>The AWS account ID of the signing profile owner.</p><br>
    /// - On success, responds with [`StartSigningJobOutput`](crate::operation::start_signing_job::StartSigningJobOutput) with field(s):
    ///   - [`job_id(Option<String>)`](crate::operation::start_signing_job::StartSigningJobOutput::job_id): <p>The ID of your signing job.</p>
    ///   - [`job_owner(Option<String>)`](crate::operation::start_signing_job::StartSigningJobOutput::job_owner): <p>The AWS account ID of the signing job owner.</p>
    /// - On failure, responds with [`SdkError<StartSigningJobError>`](crate::operation::start_signing_job::StartSigningJobError)
    pub fn start_signing_job(&self) -> crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder {
        crate::operation::start_signing_job::builders::StartSigningJobFluentBuilder::new(self.handle.clone())
    }
}