aws-sdk-codepipeline 1.112.0

AWS SDK for AWS CodePipeline
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Represents the input of a <code>GetJobDetails</code> action.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetJobDetailsInput {
    /// <p>The unique system-generated ID for the job.</p>
    pub job_id: ::std::option::Option<::std::string::String>,
}
impl GetJobDetailsInput {
    /// <p>The unique system-generated ID for the job.</p>
    pub fn job_id(&self) -> ::std::option::Option<&str> {
        self.job_id.as_deref()
    }
}
impl GetJobDetailsInput {
    /// Creates a new builder-style object to manufacture [`GetJobDetailsInput`](crate::operation::get_job_details::GetJobDetailsInput).
    pub fn builder() -> crate::operation::get_job_details::builders::GetJobDetailsInputBuilder {
        crate::operation::get_job_details::builders::GetJobDetailsInputBuilder::default()
    }
}

/// A builder for [`GetJobDetailsInput`](crate::operation::get_job_details::GetJobDetailsInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetJobDetailsInputBuilder {
    pub(crate) job_id: ::std::option::Option<::std::string::String>,
}
impl GetJobDetailsInputBuilder {
    /// <p>The unique system-generated ID for the job.</p>
    /// This field is required.
    pub fn job_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.job_id = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The unique system-generated ID for the job.</p>
    pub fn set_job_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.job_id = input;
        self
    }
    /// <p>The unique system-generated ID for the job.</p>
    pub fn get_job_id(&self) -> &::std::option::Option<::std::string::String> {
        &self.job_id
    }
    /// Consumes the builder and constructs a [`GetJobDetailsInput`](crate::operation::get_job_details::GetJobDetailsInput).
    pub fn build(
        self,
    ) -> ::std::result::Result<crate::operation::get_job_details::GetJobDetailsInput, ::aws_smithy_types::error::operation::BuildError> {
        ::std::result::Result::Ok(crate::operation::get_job_details::GetJobDetailsInput { job_id: self.job_id })
    }
}